Android中自动跳转到系统设置界面

// 转到手机设置界面,用户设置GPS
Intent intent = new Intent(
Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivityForResult(intent, 0); // 设置完成后返回到原来的界面

http://blog.csdn.net/lotusyangjun/article/details/26240645

原文地址:https://www.cnblogs.com/androidsj/p/5150896.html