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();
}
相關文章
相關標籤/搜索