1

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;
        }
    }

私は何が欠けていますか?前もって感謝します。

4

1 に答える 1

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.
            }
        }
    }

}
于 2016-04-07T02:13:35.323 に答える