如何打开应用权限' Android中以编程方式设置的页面?

时间:2016-05-07 13:23:06

标签: java android

我知道有很多问题。
但今天我发现了这个: enter image description here

enter image description here

我的手机是Gallaxy Note 4,三星图库应用程序正常运行 从活动中打开应用权限页面!'没有设置细节页面。

任何人都知道如何做到这一点?

1 个答案:

答案 0 :(得分:2)

以下是打开设置>的方法。申请的权限

public static void openPermissionSettings(Activity activity) {
  Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, 
      Uri.parse("package:" + activity.getPackageName()));
  intent.addCategory(Intent.CATEGORY_DEFAULT);
  intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  activity.startActivity(intent);
}

如果您的权限被拒绝且shouldShowRequestPermissionRationale(Activity activity, String permission)返回true,则应考虑使用此功能。