RemoteServiceException:Context.startForegroundService 当时没有调用



我从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
  • 火力基础消息传递/分析/等
  • Google Play Services Analytics/GCM/Tasks/etc.
  • 来自Evernote的Android-Job

问题是,我无法确切地找出导致此错误的服务。如果该类包含在例外中,我就不会在这里......

无论如何,是否有任何关于异常来自何处的提示[捕捉/投掷/我不知道]?

我已经阅读了以下所有帖子,但完全没有运气:

  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 这里
  • 和这里

这仅在打开应用程序时偶尔发生,所以对我来说我的代码是正确的吗?

我只想知道如何弄清楚这是来自哪个服务。

如果您调用startForegroundService(),则需要让服务启动。否则,你将得到"Context.startForegroundService() 没有调用 Service.startForeground()"异常。

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

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

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

相关内容

  • 没有找到相关文章

最新更新