首页 > 技术文章 > Android中自动跳转到系统设置界面

androidsj 2016-01-22 13:14 原文

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

 

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

推荐阅读