【发布时间】:2021-12-13 16:18:27
【问题描述】:
我想用 registerForActivityResult 检查 ACTION_MANAGE_OVERLAY_PERMISSION 而这段代码不起作用,当我检查权限时,没有出现 Toast “Ok”
mStartForResult.launch(new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION));
ActivityResultLauncher<Intent> mStartForResult = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(),
new ActivityResultCallback<ActivityResult>() {
@Override
public void onActivityResult(ActivityResult result) {
if (result.getResultCode() == Activity.RESULT_OK) {
Toast.makeText(MainActivity.this,"Ok",Toast.LENGTH_SHORT).show();
}
}
});```
【问题讨论】:
标签: java android android-intent