首頁 > 軟體

Android許可權詢問的範例詳解

2022-10-02 14:01:31

AndroidMaifest.xml中宣告許可權

<!-- 宣告所有需要的許可權(包括普通許可權和危險許可權) -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS"/>

直接上程式碼,放在想要攔截的地方即可 ,一般是程式啟動時即存取

private static final int MY_PERMISSION_REQUEST_CODE = 10000;

//第 1 步: 檢查是否有相應的許可權,
boolean isAllGranted = checkPermissionAllGranted(
    new String[] {
        //根據自己需求,進行新增相應的許可權
        Manifest.permission.READ_EXTERNAL_STORAGE,
        Manifest.permission.WRITE_EXTERNAL_STORAGE
    }
);
// 如果許可權全都擁有, 則直接初始化紀錄檔檔案
if (isAllGranted) {
    configureLog4J.configure();//有許可權之後要做的事情
    return;
}

//第 2 步: 請求許可權
// 一次請求多個許可權, 如果其他有許可權是已經授予的將會自動忽略掉
ActivityCompat.requestPermissions(
    this,
    new String[] {
        Manifest.permission.READ_EXTERNAL_STORAGE,
        Manifest.permission.WRITE_EXTERNAL_STORAGE
    },
    MY_PERMISSION_REQUEST_CODE
);

//檢查是否擁有指定的所有許可權
private boolean checkPermissionAllGranted(String[] permissions) {
    for (String permission : permissions) {
        if (ContextCompat.checkSelfPermission(this, permission) != PackageManager.PERMISSION_GRANTED) {
            // 只要有一個許可權沒有被授予, 則直接返回 false
            return false;
        }
    }
    return true;
}


//第 3 步: 申請許可權結果返回處理
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    super.onRequestPermissionsResult(requestCode, permissions, grantResults);

    if (requestCode == MY_PERMISSION_REQUEST_CODE) {
        boolean isAllGranted = true;

        // 判斷是否所有的許可權都已經授予了
        for (int grant : grantResults) {
            if (grant != PackageManager.PERMISSION_GRANTED) {
                isAllGranted = false;
                break;
            }
        }

        if (isAllGranted) {
            // 如果所有的許可權都授予了, 則初始化紀錄檔檔案
            configureLog4J.configure();//有許可權之後要做的事情

        } else {
            // 彈出對話方塊告訴使用者需要許可權的原因, 並引導使用者去應用許可權管理中手動開啟許可權按鈕
            openAppDetails();
        }
    }
}
//開啟 APP 的詳情設定
private void openAppDetails() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setMessage("該程式需要存取 「外部記憶體」,請到 「應用資訊 -> 許可權」 中授予!");
    builder.setPositiveButton("去手動授權", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Intent intent = new Intent();
            intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
            intent.addCategory(Intent.CATEGORY_DEFAULT);
            intent.setData(Uri.parse("package:" + getPackageName()));
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
            intent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
            startActivity(intent);
        }
    });
    builder.setNegativeButton("取消", null);
    builder.show();
}

到此這篇關於Android許可權詢問的文章就介紹到這了,更多相關Android許可權詢問內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com