When my Activity
calls ActivityCompat.requestPermissions
, the UI dialog box does not appear.
ActivityCompat.requestPermissions(HomeActivity.this,
new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION);
I have this screen on the phone:
I do not know how to do, I try with:
requestPermissions( new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION);
I have the same result, if I put the line in comment and I have not the window that appears but I do not have the result (UI dialog box)