Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
I'm using a runtime permission request, but there is a problem with that. It seems that the callback method
onRequestPermissionsResult
is called infinitely. So when the user denies the request the app is unresponsive..
the permission dialog reappears everytime the user clicks 'deny'. Only by clicking "never ask again" does it not reappear again.
* When pressing 'allow' it works well - without any problems.
Is there any way to cancel the method being invoked after one time?
if (ActivityCompat.checkSelfPermission( this, Manifest.permission.ACCESS_FINE_LOCATION ) != PackageManager.PERMISSION_GRANTED )
ActivityCompat.requestPermissions( this, new String[]{ Manifest.permission.ACCESS_FINE_LOCATION }, LOCATION_PERMISSION_CUSTOM_REQUEST_CODE );
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
switch( requestCode )
case LOCATION_PERMISSION_CUSTOM_REQUEST_CODE:
// If request is cancelled, the result arrays are empty.
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
// permission was granted
MyManager.connect();
return;
} else {
// permission denied
return;
default:
return;
–
–
–
–
The problem here, as you mentioned in the comments, is that the code that triggers the request permission dialog is being called in the onResume method.
When the request dialog permission finishes, the runtime calls onResume on the activity that triggered it, just as any dialog-themed activity would.
In your case, refusing the permission would trigger a call to onResume again, which would once again display the dialog and cause an endless cycle.
Moving this permission request to onCreate, or some other flow will solve your problem.
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.