我们已要求实施一个方案,即在用户闲置5秒钟后,必须通过“拒绝”关闭运行时权限对话框。
步骤: 1.用户单击“保存”按钮 2.显示权限对话框 3.如果用户5秒钟内未单击接受/拒绝,则
预期结果:应关闭对话框,并选择“拒绝”。
任何帮助将不胜感激。
还请让我知道,是否有可能?
答案 0 :(得分:1)
这确实是有效的边缘情况,如下所述。
sendBroadcast(new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS));
假设用户启动了您的应用,并立即显示了权限对话框,例如从一个片段。然后,用户切换到另一个应用,从中将新的意图发送到您的应用,例如Intent.ACTION_VIEW
。然后,您可能需要在显示权限对话框之前更改/重新排列UI:
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (isShowingPermissionDialog() {
// Handle this intent after permisson dialog is dismissed!
mPendingIntent = intent;
} else {
// This could interfere with the expected permission
// callback of the active fragment etc.
changeActiveFragment();
}
}
或者,如果您想显式关闭权限对话框:
private void closeSystemDialogs() {
sendBroadcast(new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS));
}
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
closeSystemDialogs();
changeActiveFragment();
}