1. ホーム
  2. android

[解決済み] Android marshmallowのリクエスト許可?

2022-04-14 04:07:53

質問

現在、いくつかの危険なパーミッションを必要とするアプリケーションに取り組んでいます。そこで、Android Marshmallow(API Level 23)で必要なものとして、"ask for permission"を追加しようとしましたが、方法が見つかりませんでした。

私のアプリで新しい許可モデルを使用して許可を求めるにはどうすればよいですか?

どのように解決するのですか?

以下のコードでダイアログを開いてください。

 ActivityCompat.requestPermissions(MainActivity.this,
                    new String[]{Manifest.permission.READ_EXTERNAL_STORAGE},
                    1);

以下のようにActivityの結果を取得します。

@Override
public void onRequestPermissionsResult(int requestCode,
                                       String permissions[], int[] grantResults) {
    switch (requestCode) {
        case 1: {

          // If request is cancelled, the result arrays are empty.
          if (grantResults.length > 0
                    && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

                // permission was granted, yay! Do the
                // contacts-related task you need to do.          
            } else {

                // permission denied, boo! Disable the
                // functionality that depends on this permission.
                Toast.makeText(MainActivity.this, "Permission denied to read your External storage", Toast.LENGTH_SHORT).show();
            }
            return;
        }

        // other 'case' lines to check for other
        // permissions this app might request
    }
}

詳細はこちら https://developer.android.com/training/permissions/requesting.html