我正在尝试为Android M请求READ_PHONE_STATE权限,但它适用于活动,当我在片段中实现它时,它不会显示对话框。 这是代码。
if (preference.getToken() == null) {
if (ContextCompat.checkSelfPermission(getActivity(), Manifest.permission.READ_PHONE_STATE) != PackageManager.PERMISSION_GRANTED) {
requestReadPhoneStatePermission();
} else {
TelephonyManager tm = (TelephonyManager) getActivity().getSystemService(Context.TELEPHONY_SERVICE);
HashMap<String, String> params = new HashMap<String, String>();
params.put("appCode", Constants.TRACKING_ID);
params.put("phone", tm.getDeviceId());
DeviceUserService.getDeviceUser(params, getContext());
bookmark();
}
以下是方法requestReadPhoneStatePermission
public void requestReadPhoneStatePermission() {
if (ActivityCompat.shouldShowRequestPermissionRationale(getActivity(), Manifest.permission.READ_PHONE_STATE)) {
} else {
ActivityCompat.requestPermissions(getActivity(), new String[]{Manifest.permission.READ_PHONE_STATE}, READ_PHONE_STATE);
}
}
这是onRequestPermissionsResult上的代码。
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case READ_PHONE_STATE:
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Toast.makeText(getContext(), "granted", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getContext(), "permission not granted", Toast.LENGTH_LONG).show();
}
return;
}
}
我缺少什么?提前谢谢。
答案 0 :(得分:1)
您的requestReadPhoneStatePermission方法错误。
修改强>
我看到这个旧帖子得到了投票,并意识到这不是一个正确的实现。
这是处理权限请求的正确方法。
public void requestReadPhoneStatePermission() {
ActivityCompat.requestPermissions(getActivity(), new String[]{Manifest.permission.READ_PHONE_STATE}, READ_PHONE_STATE);
}
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if(requestCode==READ_PHONE_STATE){
if(grantResults[0]==PackageManager.PERMISSION_GRANTED){
//do your thing
}
else{
if(ActivityCompat.shouldShowRequestPermissionRationale(this,Manifest.permission.READ_PHONE_STATE)){
//user denied the permission but did not check the "never show again" option.
//You can ask for the permission again or show a dialog explaining
//why you need the permission with a button that requests the permission again on click.
}
else{
//user denied the permission and checked the "never show again" option.
//Here you can show a dialog explaining the situation and that the user has
//to go to the app settings and allow the permission otherwise yor feature
//will not be available.
}
}
}
}