在使用android权限的时候,比如读取SD卡、打开相机等操作的时候,判断用户是否开启当前对应的操作权限的代码
<code>
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.CAMERA)
!= PackageManager.PERMISSION_GRANTED) {
ToastUtils.makeToast("需要开启相机权限"); return;
}
</code>
<code>
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.CAMERA)
!= PackageManager.PERMISSION_GRANTED) {
ToastUtils.makeToast("需要开启相机权限"); return;
}
</code>