Support the right to request for permission at anywhere.
- Chain call, a word to request for permissions.
- Support annotation callback results, support Listener callback results.
Rationale
: When the user refuse a permission, you request this permission again, show a description of the application's permission to the user, with the consent of the user to continue to request, avoid the user check[Never ask again]
.- Even if the user refused permission and check
[Never ask again]
, you can useSettingDialog
to allows the user to open your APP'sSetting Page
authorization. RationaleDialog
andSettingDialog
allow developers to customize.- Support the right to apply for permission at any place, not limited to
Activity
andFragment
.
- Gradle
compile 'com.yanzhenjie:permission:1.0.8'
- Maven
<dependency>
<groupId>com.yanzhenjie</groupId>
<artifactId>permission</artifactId>
<version>1.0.8</version>
<type>pom</type>
</dependency>
It is recommended to download Demo and read README, which can help you understand.
Attention: You do not have to make any judgments before request permissions, AndPermission
will automatically judge, no permissions will be requested.
// Activity:
AndPermission.with(activity)
.requestCode(100)
.permission(Manifest.permission.WRITE_CONTACTS)
.rationale(...)
.callback(...)
.start();
// Fragment:
AndPermission.with(fragment)
.requestCode(100)
.permission(
// Multiple permissions, array form.
Manifest.permission.WRITE_CONTACTS,
Manifest.permission.READ_SMS
)
.rationale(...)
.callback(...)
.start();
// Anywhere:
AndPermission.with(context)
.requestCode(100)
.permission(
Manifest.permission.WRITE_CONTACTS,
Manifest.permission.READ_SMS
)
.rationale(...)
.callback(...)
.start();
Received callback results in two ways: The Listener
and Annotation Method
.
In the callback()
method passed PermissionListener
.
AndPermission.with(context)
...
.requestCode(200)
.callback(listener)
.start();
private PermissionListener listener = new PermissionListener() {
@Override
public void onSucceed(int requestCode, List<String> grantedPermissions) {
// Successfully.
if(requestCode == 200) {
// TODO ...
}
}
@Override
public void onFailed(int requestCode, List<String> deniedPermissions) {
// Failure.
if(requestCode == 200) {
// TODO ...
}
}
};
In the callback()
method, you can pass the instance of your callback method.
AndPermission.with(context)
...
.requestCode(300)
.callback(this)
.start();
// The 300 is the the requestCode().
@PermissionYes(300)
private void getPermissionYes(List<String> grantedPermissions) {
// Successfully.
}
@PermissionNo(300)
private void getPermissionNo(List<String> deniedPermissions) {
// Failure.
}
Runtime permissions
have a feature, after refused a permission, re-request for the permission, system will be more than a [Never ask again]
check box in the dialog, when the user check the [Never ask again]
and refused permission, the next time to request permission, the system will callback failed.
So the Rationale
function is in the user refused a permission, when you apply for permission again, you will see a description, after the user allows permission to apply for permission, this prevents the user from checking for [Never ask again]
.
AndPermission.with(this)
...
.requestCode(...)
.rationale((requestCode, rationale) ->
AndPermission.rationaleDialog(context, rationale).show()
)
.start()
AndPermission.with(this)
...
.requestCode(...)
.rationale(rationaleListener)
.start()
private RationaleListener rationaleListener = (requestCode, rationale) -> {
AlertDialog.newBuilder(this)
.setTitle("Tips")
.setMessage("Request permission to recommend content for you.")
.setPositiveButton("OK", (dialog, which) -> {
rationale.resume();
})
.setNegativeButton("NO", (dialog, which) -> {
rationale.cancel();
}).show();
};
When the user checked [Never ask again]
, we can prompt the user to open your APP's Setting Page
authorization.
We add the following code in the failure callback method, the following three options can be:
// To judge whether to check the [Never ask again].
if (AndPermission.hasAlwaysDeniedPermission(activity, deniedPermissions)) {
// First type: with AndPermission default prompt.
AndPermission.defaultSettingDialog(activity, 400).show();
// Second: with a custom prompt.
AndPermission.defaultSettingDialog(activity, 400)
.setTitle("Permission Failure")
.setMessage("Have you denied some of the necessary permissions,"
+ " the operation can not continue, is it reauthorized?")
.setPositiveButton("OK")
.show();
// Third: custom dialog style.
SettingService settingService = AndPermission.defineSettingDialog(activity, 400);
...
// Called when the user clicks the [OK] button:
settingService.execute();
// Called when the user clicks the [NO] button:
settingService.cancel();
}
If you are in the Activity / Fragment
call the above code, when the user in the system Setting
operation is completed, it will call back the Activity/Fragment
this method:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case 400: { // This is the 400 you are above the number of incoming.
// Check the permissions, and make the appropriate operation.
if (AndPermission.hasPermissions(...)) {
// TODO ...
}
break;
}
}
}
- If you use
Listener
to accept callback results, do not have any configuration. - Use the annotation of the way callback results, in the
proguard
add the following configuration:
-keepclassmembers class ** {
@com.yanzhenjie.permission.PermissionYes <methods>;
}
-keepclassmembers class ** {
@com.yanzhenjie.permission.PermissionNo <methods>;
}
Copyright © Yan Zhenjie
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.