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

https://developer.android.google.cn/reference/android/provider/Settings.htmlhtml

如跳转到位置服务界面java

Intent intent =  new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);  
              startActivity(intent);
跳到本身的app设置界面:android

Settings.ACTION_APPLICATION_DETAILS_SETTINGS

(权限管理界面跳转的action是系统自用的,普通app用不了)app

魅族跳往本身app权限设置界面:ide

Intent intent = new Intent("com.meizu.safe.security.SHOW_APPSEC");
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.putExtra("packageName",BuildConfig.APPLICATION_ID);
try{
    startActivity(intent);
}catch(Exception e){
e.printStackTrace();
}
相关文章
相关标签/搜索