5

我一直在寻找有关中国手机(Oppo、华为、小米、vivo 等)这个问题的答案,当应用程序向上滑动(关闭)时,后台服务停止运行。

大多数解决方案是:

  1. 包含 START_STICKY 并使用 AlarmManager 启动服务。
  2. 以编程方式将用户引导到自动启动管理器以按用户启用应用程序。
  3. 手动将我的应用程序从省电模式中排除或将我的应用程序包含为受保护的应用程序。

我的问题是,Whatsapp 之类的应用程序即使向上滑动,仍然如何接收消息或通知?此外,如果手机重启,1.和2.中提到的解决方案不起作用,但是Whatsapp仍然可以接收消息吗?我已经测试了三星设备,即使应用程序向上滑动,它们运行后台服务也没有问题。有人用中国手机遇到同样的问题吗?

4

2 回答 2

5
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"));
            } else if ("Letv".equalsIgnoreCase(manufacturer)) {
                intent.setComponent(new ComponentName("com.letv.android.letvsafe", "com.letv.android.letvsafe.AutobootManageActivity"));
            } else if ("Honor".equalsIgnoreCase(manufacturer)) {
                intent.setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity"));
            }
            else if ("huawei".equalsIgnoreCase(manufacturer)) {
                intent.setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity"));
            }
            else if ("asus".equalsIgnoreCase(manufacturer)) {
                intent.setComponent(new ComponentName("com.asus.mobilemanager","com.asus.mobilemanager.autostart.AutoStartActivity"));
            }
            else {
                Log.e("other phone ", "===>");
            }
            List<ResolveInfo> list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
            if (list.size() > 0) {
                startActivity(intent);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
于 2018-09-15T09:02:51.977 回答
0

我仍在寻找答案。我已联系 Google 支持团队,他们回复如下:

在与我们的工程师讨论后,这确实是预期的行为。因为他们使用的库存 ROM 禁用了大多数应用程序的后台服务的重新启动。用户应手动启用后台服务的自动启动,因为默认情况下它们是禁用的。这不能以编程方式为所有设备启用。因此,您必须提示您的用户手动执行这些步骤。请查看本指南以了解有关此解决方法的更多信息。

于 2018-02-26T17:18:45.670 回答