请求授予权限时未显示 requestpermission 对话框

requestpermission dialog is not showing up when requesting to grant permission

我正在请求 ACCESS_COARSE_LOCATION 许可,但没有出现对话框。

这是我的代码:

if (!checkPermissions()) {
    requestPermissions();
} else {
    getLastLocation();
}

这是requestPermission()

private void requestPermissions() {
        boolean shouldProvideRationale =
                ActivityCompat.shouldShowRequestPermissionRationale(this,
                        Manifest.permission.ACCESS_COARSE_LOCATION);

        // Provide an additional rationale to the user. This would happen if the user denied the
        // request previously, but didn't check the "Don't ask again" checkbox.
        if (shouldProvideRationale) {
            Log.i(TAG, "Displaying permission rationale to provide additional context.");

            AlertDialog.Builder builder1 = new AlertDialog.Builder(MainActivity.this);
            builder1.setMessage("Location permission is needed in order to show your current location");
            builder1.setCancelable(true);

            builder1.setPositiveButton(
                    "OK",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int id) {
                            ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.RECORD_AUDIO},
                                    PERMISSION_REQUEST_RECORD_AUDIO);
                        }
                    });

            AlertDialog alert11 = builder1.create();
            alert11.show();

        } else {
            Log.i(TAG, "Requesting permission");
            // Request permission. It's possible this can be auto answered if device policy
            // sets the permission in a given state or the user denied the permission
            // previously and checked "Never ask again".
            ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.ACCESS_COARSE_LOCATION},
                    REQUEST_PERMISSIONS_REQUEST_CODE);
        }
    }

我正在 08-31 13:02:25.067 8231-8231/com.appName.app/com.appName.app.MainActivity: Requesting permission 打印出来,但没有显示请求许可的对话框。

为什么会这样?

试试这个

 String permission = android.Manifest.permission.ACCESS_FINE_LOCATION;
        if (ActivityCompat.checkSelfPermission(SearchCityClass.this, permission)
                != PackageManager.PERMISSION_GRANTED && ActivityCompat.
                checkSelfPermission(SearchCityClass.this, android.Manifest.permission.ACCESS_COARSE_LOCATION)
                != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(SearchCityClass.this, new String[]
                    {permission}, 123);

        }

现在处理权限结果

@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
                                       @NonNull int[] grantResults) {
    super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    if (requestCode == PERMISSION_GPS_CODE) {
        if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {


            Toast.makeText(this, "location_permission_granted ", Toast.LENGTH_SHORT).show();

        } else {

            Toast.makeText(this, "location_permission_not_granted ", Toast.LENGTH_SHORT).show();
        }
    }

}

不要忘记在清单文件中添加此权限

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

抱歉犯了这个愚蠢的错误。

我想通了。我忘了在 AndroidManifest.xml 中添加 <uses-permission> 标签。

添加:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

AndroidManifest.xml<manifest> 标签下完成了工作。