我在真实设备上的 android 10 - android Q - MIUI 11 中从后台启动活动时遇到问题。在此线程中:在 android 10 中启动活动背景我找到了如何在 Android 10 上执行此操作的信息,并且一切都在模拟器上完美运行。
我在装有 Android 10 (MIUI 11) 的小米米 9T Pro 上对此进行了测试,似乎这不起作用。
在 logcat 我有以下日志:
-W/ActivityTaskManager: Background activity start for com.com.app allowed because SYSTEM_ALERT_WINDOW permission is granted.
-D/ActivityTaskManagerServiceInjector: MIUILOG- Permission Denied Activity : Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.android.chrome cmp=com.android.chrome/com.google.android.apps.chrome.Main } pkg : com.com.app uid : 10283 tuid : 10052
为什么这在小米设备上不起作用?
编辑:
我找到了解决方案。在 MIUI 中有额外的权限应该被打开。它被称为:在后台运行时显示弹出窗口。这是使用此权限显示窗口的代码:
首先,我正在检查用户是否在手机上安装了 MIUI:
public static boolean isMiUi() {
return !TextUtils.isEmpty(getSystemProperty("ro.miui.ui.version.name"));
}
public static String getSystemProperty(String propName) {
String line;
BufferedReader input = null;
try {
java.lang.Process p = Runtime.getRuntime().exec("getprop " + propName);
input = new BufferedReader(new InputStreamReader(p.getInputStream()), 1024);
line = input.readLine();
input.close();
} catch (IOException ex) {
return null;
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return line;
}
如果是,则可以显示具有权限的窗口:
private void showPermissionsDialog() {
Intent intent = new Intent("miui.intent.action.APP_PERM_EDITOR");
intent.setClassName("com.miui.securitycenter",
"com.miui.permcenter.permissions.PermissionsEditorActivity");
intent.putExtra("extra_pkgname", getPackageName());
startActivity(intent);
}
现在我需要检查用户是否授予了此权限,因为我不想每次启动应用程序时都显示此窗口。有人知道怎么做吗?