Android 6.0权限申请

Android 6.0(API level 23)增加了运行时权限权限申请。

一、权限主要分类

1、Normal权限
Normal权限是指当你的应用需要访问本应用沙盒以外的数据和资源,同时该操作基本不会访问用户隐私或访问其他应用时所需要的权限。比如:设置时区的权限就是一个Normal权限。当用户声明了需要的Normal权限后,系统会自动为该应用获取到需要的Normal权限。

2、Dangerous权限
Dangerous权限是指当应用需要访问的数据或资源会涉及到用户隐私、影响用户存储的数据和操作其他应用时所需要的权限。比如:访问用户联系人的权限。如果应用声明了需要的Dangerous权限,那么需要用户直接授权给应用该权限。系统不能自动获取。

    注意:对于Dangerous权限每次使用到相关操作时都需要进行判断。

二、Android 6.0 示例代码

1、Manifest.xml 中声明

    
     

2、Activity代码

// Android 6.0 权限检查。this is current activity
private static final int MY_CONTACTS_PERMISSION = 12;
public void permissionCheck(String permisson){
    // 查看是否已经获取权限
    int hasPermission = ContextCompat.checkSelfPermission(this, permisson);
    if (hasPermission == PackageManager.PERMISSION_GRANTED){
        Log.d("WSJ",">>>> permission granted");
    }else if (hasPermission == PackageManager.PERMISSION_DENIED){
        Log.d("WSJ",">>>> no permission");
        // Should we show an explanation ?
        if (ActivityCompat.shouldShowRequestPermissionRationale(this,permisson)){
            // the app has requested this permission previously and the user denied the request
            // TODO : the flowing .
            // 1. Show an expanation to the user *asynchronously* -- don't block
            // 2. this thread waiting for the user's response! After the user
            // 3. sees the explanation, try again to request the permission.
        }else{
            // 1. User turn down the permission request and chose the "Don't ask Again".
            // 2. A device policy prohibits the app from having that permission.
            // No explanation needed , we can request the permission.
            // 这个方法会弹出一个系统默认的请求Dialog。也可以自定义。参考Google 官方Demo。
            // 第二参数:是一个权限字符串数组。
            // 第三参数:自定义代码,用于权限请求回调。
            ActivityCompat.requestPermissions(this,new String[]{permisson},MY_CONTACTS_PERMISSION);
        }
    }
}
// 权限请求回调方法
/**
 * requestCode : 自定义代码。
 * permissions :权限字符串数组。
 * grantResults:权限申请结果。
 * */
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    switch (requestCode){
        case MY_CONTACTS_PERMISSION:
            if (grantResults.length > 0 && (grantResults[0] == PackageManager.PERMISSION_GRANTED)) {
                // 获取权限成功。操作继续。
            }else{
                // 获取权限失败,操作停止。
            }
            break;
        default:
            break;
    }
}

3、我遇到的问题

  1. 编译器找不到相关的方法,需要导入V7包。

     dependencies {
         compile 'com.android.support:appcompat-v7:24.0.0'
     }

你可能感兴趣的:(Android 6.0权限申请)