gpt4 book ai didi

android - 使用 PendingIntent 的应用程序小部件中的 Oreo 服务未启动

转载 作者:IT老高 更新时间:2023-10-28 23:32:02 24 4
gpt4 key购买 nike

我正在使用 Android 应用小部件。我正在创建一个 PendingIntent 对象并在方法 RemoteViews#setOnClickPendingIntent() 中使用它。这是待定 Intent :

// The below code is called in the onUpdate(Context, AppWidgetManager, int[]) method of the AppWidgetProvider class.

// Explicit intent
Intent intent = new Intent(context, MyService.class);
intent.setAction(MY_ACTION);
intent.putExtra(EXTRA_KEY, VALUE);

// Create the pending intent
PendingIntent pendingIntent = PendingIntent.getService(context, appWidgetId, intent, 0);

// 'views' is a RemoteViews object provided by onUpdate in the AppWidgetProvider class.
views.setOnClickPendingIntent(R.id.root_layout, pendingIntent);

上面的代码在 Android Oreo 之前可以正常工作。但是,在 Android Oreo 中,如果应用程序从最近浏览器中滑开,它将不再启动该服务。 (不再 Activity )。 PendingIntent 不排除在 Oreo 的后台执行限制中吗?

出于测试目的,我将 getService 替换为 getForegroundServiceService 仍未启动。两种方法都在日志中显示以下消息:

W/ActivityManager: Background start not allowed: service Intent { act=com.example.myapp.MY_ACTION flg=0x10000000 cmp=com.example.myapp/com.example.myapp.MyService bnds=[607,716][833,942] (has extras) } to com.example.myapp/com.example.myapp.MyService from pid=-1 uid=10105 pkg=com.example.myapp

为什么 Service 没有启动,即使使用 getForegroundService?我在运行 Android 8.1.0 的 Nexus 6P 上对此进行了测试。

最佳答案

在 8.0 中您不能再在后台启动服务,但您可以使用 JobScheduler 来实现类似的结果。还有一个 JobIntentService 帮助程序类,允许您从服务切换到 JobScheduler 而无需进行太多重构。您不能使用 PendingIntent 指向服务,但可以使用指向 ActivityBroadcastReceiver 的服务。

如果您在 8.0 之前有一个可以工作的小部件,现在您需要让它在 android 8.0 上工作,只需执行以下简单步骤:

  1. 将您的 IntentService 类更改为 JobIntentService
  2. 将服务onHandleIntent方法重命名为onHandleWork(参数相同)
  3. 在 list 中为您的服务添加 BIND_JOB_SERVICE 权限:
    <service android:name=".widget.MyWidgetService"
android:permission="android.permission.BIND_JOB_SERVICE">
</service>
  1. 要启动此服务,您必须不再使用 context.startService。而是使用 enqueueWork 静态方法(其中 JOB_ID 只是一个唯一的整数常量,对于同一类排队的所有工作必须是相同的值):
    enqueueWork(context, MyWidgetService.class, JOB_ID, intent);
  1. 对于点击,将指向服务的pendingIntent 替换为指向BroadcastReceiver 的pendingIntent。由于您的 AppWidgetProvider 子类本身就是一个 BroadcastReceiver,您不妨使用它:
    Intent myIntent = new Intent(context, MyAppWidgetProvider.class);
myIntent .setAction("SOME_UNIQUE_ACTION");
pendingIntent = PendingIntent.getBroadcast(context, 0, myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  1. 在 onReceive 中使用 enqueueWork 启动服务(如果您的 PendingIntent 正在启动 activity,请保持原样 - 它可以在 android 8.0+ 上正常工作):
    @Override
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
if (intent.getAction().equals("SOME_UNIQUE_ACTION")) {
MyWidgetService.enqueueWork(.....);
}
}
  1. 为确保 widget 可以在旧设备上运行,请确保您在 list 中具有 WAKE_LOCK 权限(由旧设备上的 JobIntentService 使用)。

就是这样。这个小部件现在可以在新旧设备上正常工作。唯一真正的区别是,如果您的 8.0 设备处于打瞌睡模式,它可能不会经常更新小部件,但这应该不是问题,因为如果它正在打瞌睡,这意味着用户现在看不到您的小部件无论如何。

关于android - 使用 PendingIntent 的应用程序小部件中的 Oreo 服务未启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48130247/

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