gpt4 book ai didi

android - 华为手机上的"Protected Apps"设置及处理方法

转载 作者:IT老高 更新时间:2023-10-28 13:00:05 38 4
gpt4 key购买 nike

我有一台搭载 Android 5.0 的华为 P8,用于测试应用程序。该应用程序需要在后台运行,因为它跟踪 BLE 区域。

我发现华为内置了一个名为“ protected 应用程序”的“功能”,可以从手机设置(电池管理器> protected 应用程序)中访问。这允许选定的应用程序在屏幕关闭后继续运行。

对华为来说是明智的,但对我来说不幸的是,它看起来像是选择加入的,即默认情况下应用程序处于关闭状态,您必须手动将它们放入。这不是什么大问题,因为我可以在常见问题解答或打印文档中为用户提供有关修复的建议,但我最近安装了 Tinder(用于研究目的!),并注意到它被自动放入 protected 列表中。

有谁知道我可以如何为我的应用程序做到这一点?它是 list 中的设置吗?是因为 Tinder 是一款受欢迎的应用,华为才启用它吗?

最佳答案

list 中没有设置,华为启用了 Tinder,因为它是一个流行的应用程序。无法知道应用是否受到保护。

无论如何,我在 onCreate() 中使用了 ifHuaweiAlert() 来显示 AlertDialog:

private void ifHuaweiAlert() {
final SharedPreferences settings = getSharedPreferences("ProtectedApps", MODE_PRIVATE);
final String saveIfSkip = "skipProtectedAppsMessage";
boolean skipMessage = settings.getBoolean(saveIfSkip, false);
if (!skipMessage) {
final SharedPreferences.Editor editor = settings.edit();
Intent intent = new Intent();
intent.setClassName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity");
if (isCallable(intent)) {
final AppCompatCheckBox dontShowAgain = new AppCompatCheckBox(this);
dontShowAgain.setText("Do not show again");
dontShowAgain.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
editor.putBoolean(saveIfSkip, isChecked);
editor.apply();
}
});

new AlertDialog.Builder(this)
.setIcon(android.R.drawable.ic_dialog_alert)
.setTitle("Huawei Protected Apps")
.setMessage(String.format("%s requires to be enabled in 'Protected Apps' to function properly.%n", getString(R.string.app_name)))
.setView(dontShowAgain)
.setPositiveButton("Protected Apps", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
huaweiProtectedApps();
}
})
.setNegativeButton(android.R.string.cancel, null)
.show();
} else {
editor.putBoolean(saveIfSkip, true);
editor.apply();
}
}
}

private boolean isCallable(Intent intent) {
List<ResolveInfo> list = getPackageManager().queryIntentActivities(intent,
PackageManager.MATCH_DEFAULT_ONLY);
return list.size() > 0;
}

private void huaweiProtectedApps() {
try {
String cmd = "am start -n com.huawei.systemmanager/.optimize.process.ProtectActivity";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
cmd += " --user " + getUserSerial();
}
Runtime.getRuntime().exec(cmd);
} catch (IOException ignored) {
}
}

private String getUserSerial() {
//noinspection ResourceType
Object userManager = getSystemService("user");
if (null == userManager) return "";

try {
Method myUserHandleMethod = android.os.Process.class.getMethod("myUserHandle", (Class<?>[]) null);
Object myUserHandle = myUserHandleMethod.invoke(android.os.Process.class, (Object[]) null);
Method getSerialNumberForUser = userManager.getClass().getMethod("getSerialNumberForUser", myUserHandle.getClass());
Long userSerial = (Long) getSerialNumberForUser.invoke(userManager, myUserHandle);
if (userSerial != null) {
return String.valueOf(userSerial);
} else {
return "";
}
} catch (NoSuchMethodException | IllegalArgumentException | InvocationTargetException | IllegalAccessException ignored) {
}
return "";
}

关于android - 华为手机上的"Protected Apps"设置及处理方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31638986/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com