如何以编程方式在应用设置中打开应用程序权限窗口

时间:2016-02-17 12:29:18

标签: android permissions android-6.0-marshmallow android-settings

我正在开发新的权限模型(Android 6.0 Marshmallow),我想知道有没有办法以编程方式打开应用程序的权限窗口?

app permissions

不仅是申请细节

app settings

我设法用这样的东西打开第二个屏幕

private void goToSettings() {
    Intent myAppSettings = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.parse("package:" + getPackageName()));
    myAppSettings.addCategory(Intent.CATEGORY_DEFAULT);
    myAppSettings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(myAppSettings);
}

但我不知道如何打开第一个。

非常感谢您的帮助。)

1 个答案:

答案 0 :(得分:55)

这是不可能的。您可以打开应用设置屏幕,但不能打开权限设置屏幕。

有关更多说明,请参阅this question

我在这里共享代码以打开应用程序设置屏幕,

Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", activity.getPackageName(), null);
intent.setData(uri);
context.startActivity(intent);

有关详情,请参阅Open Application Settings Screen Android