I want to check a permission inside a fragment.
my code:
// Here, thisActivity is the current activity
if (ContextCompat.checkSelfPe
To handle permissions in a Fragment
call requestPermissions
method. If you override onRequestPermissionsResult
method in both fragment and activity, containing that fragment, make sure to call super.onRequestPermissionsResult(...)
in the activity method to propagate call to the onRequestPermissionsResult
method in the fragment.