gpt4 book ai didi

java - Android targetSdkVersion 23 checkSelfPermission方法

转载 作者:太空宇宙 更新时间:2023-11-03 13:15:58 25 4
gpt4 key购买 nike

我在 Android 6.0 (API 23) 中面临检查权限值的问题。即使从应用程序的设置中启用或禁用权限,也始终获得 0 值。

下面是我采取的步骤。

从设备设置->应用->我的应用->权限->禁用联系人权限手动禁用联系人权限。

仍然在 Android 6.0 中每次执行以下代码行时都得到 0 值。

ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_CONTACTS)

下面是我的代码。我在主启动器 Activity 类中定义

// Identifier for the permission request
private static final int WRITE_CONTACTS_PERMISSIONS_REQUEST = 9;
........

@Override
public void onCreate(Bundle savedInstanceState) {
....
if (android.os.Build.VERSION.SDK_INT <= android.os.Build.VERSION_CODES.LOLLIPOP_MR1)
{
sharedPreferencesEditor.putBoolean(getString(R.string.ALLOW_ACCESS_PHONEBOOK), true);
sharedPreferencesEditor.commit();
}
else {
getPermissionToReadUserContacts();
}
....

}


// Called when the user is performing an action which requires the app to read the
// user's contacts
public void getPermissionToReadUserContacts() {
// 1) Use the support library version ContextCompat.checkSelfPermission(...) to avoid
// checking the build version since Context.checkSelfPermission(...) is only available
// in Marshmallow
// 2) Always check for permission (even if permission has already been granted)
// since the user can revoke permissions at any time through Settings
if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_CONTACTS)
!= PackageManager.PERMISSION_GRANTED) {

// The permission is NOT already granted.
// Check if the user has been asked about this permission already and denied
// it. If so, we want to give more explanation about why the permission is needed.
if (shouldShowRequestPermissionRationale(
Manifest.permission.WRITE_CONTACTS)) {
// Show our own UI to explain to the user why we need to read the contacts
// before actually requesting the permission and showing the default UI
}

// Fire off an async request to actually get the permission
// This will show the standard permission request dialog UI
requestPermissions(new String[]{Manifest.permission.WRITE_CONTACTS},
WRITE_CONTACTS_PERMISSIONS_REQUEST);
}
}

// Callback with the request from calling requestPermissions(...)
@Override
public void onRequestPermissionsResult(int requestCode,
@NonNull String permissions[],
@NonNull int[] grantResults) {
// Make sure it's our original READ_CONTACTS request
if (requestCode == WRITE_CONTACTS_PERMISSIONS_REQUEST) {
if (grantResults.length == 1 &&
grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Toast.makeText(this, "Write Contacts permission granted", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, "Write Contacts permission denied", Toast.LENGTH_SHORT).show();
}
} else {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
}

最佳答案

如果您的目标 SDK 23 (Android 6),所有权限(在您的 list 中)默认情况下都被禁用,而如果您的 targetSDK 是 22 (Android 5.1) 并且您的应用程序在 Android 6 上运行,则所有权限在用户安装应用程序时默认启用,即使用户稍后撤销权限,checkSelfPermission 也会返回不正确的值 PERMISSION_GRANTED

它也可以在 PermissionChecker 的文档中找到。

In the new permission model permissions with protection level dangerous are runtime permissions. For apps targeting M and above the user may not grant such permissions or revoke them at any time. For apps targeting API lower than M these permissions are always granted as such apps do not expect permission revocations and would crash. Therefore, when the user disables a permission for a legacy app in the UI the platform disables the APIs guarded by this permission making them a no-op which is doing nothing or returning an empty result or default error.

关于java - Android targetSdkVersion 23 checkSelfPermission方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36011145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com