Git Product home page Git Product logo

permissionhelper's Introduction

PermissionHelper

PermissionHelper 是 Android 平台上的动态权限申请库。

使用

// 调用此方法请求权限
PermissionHelper.requestPermissions(Context context, String[] permissions, Callback callback);

然后回调里面会返回哪些权限被授权,哪些没有。

/**
 * 回调
 */
public interface Callback {
    /**
     * 全部被授权
     */
    void onAllGranted();

    /**
     * 没有被授权的回调
     *
     * @param notGrantedList 没有被授权的列表
     * @param forbiddenList  被禁止不在询问的列表
     */
    void onNotGranted(List<String> notGrantedList, List<String> forbiddenList);
}

拿到回调后,可以根据项目需要去控制。

一般被禁止掉掉权限,我们无法在通过系统弹框请求权限,所以在项目中提供了一个方法可以跳转到对应的设置页,让用户手动去赋予权限。

PermissionHelper.goAppSettingPage(Activity activity, int requestCode);

permissionhelper's People

Contributors

zhoudailiang avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.