gpt4 book ai didi

android - RemoteServiceException : Context. startForegroundService 没有再调用Service.startForeground

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:10:19 25 4
gpt4 key购买 nike

我从 Device Monitor 得到以下异常输出:

//FATAL EXCEPTION: main
//Process: com.xxx.yyy, PID: 11584
//android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()
// at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1881)
// at android.os.Handler.dispatchMessage(Handler.java:105)
// at android.os.Looper.loop(Looper.java:164)
// at android.app.ActivityThread.main(ActivityThread.java:6944)
// at java.lang.reflect.Method.invoke(Native Method)
// at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
// at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)

我的应用程序中有 4 个服务,它们基本上都是这样的:

public class MyService extends Service {

private static final int forgroundId = 55544433; //Unique for each Service
private Notification notification;

@Override
public void onCreate() {
super.onCreate();
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

initNotification(); //Creates a notification

startForeground(forgroundId, notification); //Start foreground, very first thing..

//Do Stuff

return START_STICKY;
}
}

要启动服务,我使用以下内容:

Intent i = new Intent(context, MyService.class);
i.SetAction("myaction..");
i.PutExtra(...);
android.support.v4.content.ContextCompat.startForegroundService(context, i);

我有一些其他的库也可能开始包含在我的项目中的服务:

  • Fabric.io
  • Firebase 消息传递/分析/等。
  • Google Play 服务分析/GCM/Tasks/等。
  • Android-工作来自 Evernote

问题是,我无法确定是哪个服务导致了这个错误。如果类(class)被包含在异常中,我就不会在这里......

有没有关于异常来源的任何提示[catch/throw/I don't know]?

我已经阅读了以下所有帖子,但一点运气都没有:

只有在打开应用程序时才会出现这种情况,所以对我来说我的代码是正确的吗?

我只想知道如何确定这是来自哪个服务。

最佳答案

如果调用startForegroundService(),需要让服务启动。否则,您将得到“Context.startForegroundService() did not then call Service.startForeground()”异常。

在您的情况下,有时您会在调用 startForegroundService() 之后但在调用服务上的 onStartCommand() 之前停止服务.而且,显然,这意味着该服务永远不会启动。这可以说是一个框架错误,但我们不太可能改变它,所以我们需要处理它。

一种方法是不使用您自己的服务。对于像这样“即发即弃”的工作,使用 WorkManager,或者可能使用 JobIntentService,您不再需要担心前景。

不过,如果您想坚持使用前台服务,请启动该服务。一种方法是让服务自行停止。例如,服务可以有自己的 onLowMemory() 方法,它可以在其中自行停止。该服务知道该服务是否调用了 startForeground(),并且可以比外部方更优雅地处理它。

关于android - RemoteServiceException : Context. startForegroundService 没有再调用Service.startForeground,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56479220/

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