gpt4 book ai didi

android - 如何以编程方式为小米中的应用程序启用自动启动

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:58:22 25 4
gpt4 key购买 nike

请问小米是否可以提供任何应用程序的后台服务?我的应用程序中有服务需要一直在后台运行,在除小米以外的所有设备中它都工作正常,如何以编程方式完成?

最佳答案

也适用于小米、oppo、vivo 和 oneplus 手机。

    try {
Intent intent = new Intent();
String manufacturer = android.os.Build.MANUFACTURER;
if ("xiaomi".equalsIgnoreCase(manufacturer)) {
intent.setComponent(new ComponentName("com.miui.securitycenter", "com.miui.permcenter.autostart.AutoStartManagementActivity"));
} else if ("oppo".equalsIgnoreCase(manufacturer)) {
intent.setComponent(new ComponentName("com.coloros.safecenter", "com.coloros.safecenter.permission.startup.StartupAppListActivity"));
} else if ("vivo".equalsIgnoreCase(manufacturer)) {
intent.setComponent(new ComponentName("com.vivo.permissionmanager", "com.vivo.permissionmanager.activity.BgStartUpManagerActivity"));
} else if("oneplus".equalsIgnoreCase(manufacturer)) {
intent.setComponent(new ComponentName("com.oneplus.security", "com.oneplus.security.chainlaunch.view.ChainLaunchAppListAct‌​ivity")); }

List<ResolveInfo> list = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (list.size() > 0) {
context.startActivity(intent);
}
} catch (Exception e) {
Crashlytics.logException(e);
}

关于android - 如何以编程方式为小米中的应用程序启用自动启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36035284/

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