I am building an app that requires user location. I am following the Android training documentation from here which says:
shouldShowRequestPermissionRationale
return the boolean indicating whether or not we should show UI with rationale for requesting a permission (dangerous permission, ACCESS_FINE_LOCATION)
Now in this code (taken from the documentation itself) :
if (ContextCompat.checkSelfPermission(thisActivity,
Manifest.permission.READ_CONTACTS)
!= PackageManager.PERMISSION_GRANTED) {
// Should we show an explanation?
if (ActivityCompat.shouldShowRequestPermissionRationale(thisActivity,
Manifest.permission.READ_CONTACTS)) {
// Show an explanation to the user *asynchronously* -- don't block
// this thread waiting for the user's response! After the user
// sees the explanation, try again to request the permission.
} else {
// No explanation needed, we can request the permission.
ActivityCompat.requestPermissions(thisActivity,
new String[]{Manifest.permission.READ_CONTACTS},
MY_PERMISSIONS_REQUEST_READ_CONTACTS);
// MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
// app-defined int constant. The callback method gets the
// result of the request.
}
}
[MY DOUBT] Shouldn't this part of code (below)
ActivityCompat.requestPermissions(thisActivity,
new String[]{Manifest.permission.READ_CONTACTS},
MY_PERMISSIONS_REQUEST_READ_CONTACTS);
be inside the 'if' condition here..
if (ActivityCompat.shouldShowRequestPermissionRationale(thisActivity,
Manifest.permission.READ_CONTACTS)) {
//HERE .....
}
I mean, if
ActivityCompat.shouldShowRequestPermissionRationale(thisActivity, Manifest.permission.READ_CONTACTS)
is true, then we need to show the UI and we will show the UI by
ActivityCompat.requestPermissions(thisActivity,
newString[{Manifest.permission.READ_CONTACTS}, MY_PERMISSIONS_REQUEST_READ_CONTACTS);
Please explain where I am mistaken. I am stuck here. Thanks in advance. An example would be much appreciated.
Note: Of course, I am running my app on Android M, and my target sdk is >=23.
As per the documentation,
This UI is our custom UI (we can show an alertdialog, for example), NOT the dialog that our device shows (see below):
With this in mind, now
The return value of
shouldShowRequestPermissionRationale
is as shown in flowchart.Also note that,
Thus, to summarize
shouldShowRequestPermissionRationale
will return true only if the application was launched earlier and the user "denied" the permission WITHOUT checking "never ask again".Implementation
Let's create a
PermissionUtils.java
file which handles the different cases for us.Logic
We first begin by checking do we even require runtime permission in the first place ? This is done by :
If we do require runtime permission, then we check if we had got that permission already earlier by
If we don't have the permission, then we need to handle two cases which are:
Thus, the bottomline is:
Finally inside our activity, we handle all these cases by implementing the callbacks of the listener.
Hope this helps.