Android 运行时权限

添加dependencies

build.gradle(Project)中添加

    buildscript {
        dependencies {
            classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        }
    }

build.gradle(Module)中添加

    apply plugin: 'android-apt'

    targetSdkVersion 23

    dependencies {
        compile 'com.github.hotchemi:permissionsdispatcher:2.1.3'
        apt 'com.github.hotchemi:permissionsdispatcher-processor:2.1.3'
    }

结合PermissionsDispatcher plugin插件就可以Generate需要的代码了

PermissionsDispatcher plugin

  • 右键 Generate
  • Generate Runtime Permission…

Android 运行时权限_第1张图片

  • Method name 里面填写名称点击Generate
  • 弹出Rebuild对话框, 点允许

这样在Android 6.0以上的手机上就会弹出运行时权限对话框了.

另附:

Annotation Required Description
@RuntimePermissions Register an Activity or Fragment to handle permissions
@NeedsPermission Annotate a method which performs the action that requires one or more permissions
@OnShowRationale Annotate a method which explains why the permission/s is/are needed. It passes in a PermissionRequest object which can be used to continue or abort the current permission request upon user input
@OnPermissionDenied Annotate a method which is invoked if the user doesn’t grant the permissions
@OnNeverAskAgain Annotate a method which is invoked if the user chose to have the device “never ask again” about a permission

你可能感兴趣的:(Android)