我的应用程序将在 startForegroundService(intent)
的 onCreate
中调用 MainActivity
。我将 startForeground(ON_SERVICE_CONNECTION_NID, notification)
放在 onCreate
和 startCommand
的 Service
中。
但我偶尔还是会收到这个错误。
Exception android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()
android.app.ActivityThread$H.handleMessage (ActivityThread.java:1775)
android.os.Handler.dispatchMessage (Handler.java:105)
android.os.Looper.loop (Looper.java:164)
android.app.ActivityThread.main (ActivityThread.java:6541)
java.lang.reflect.Method.invoke (Method.java)
com.android.internal.os.Zygote$MethodAndArgsCaller.run (Zygote.java:240)
com.android.internal.os.ZygoteInit.main (ZygoteInit.java:767)
这怎么会发生?
onCreate
或 startCommand
是否有可能在 5 秒内没有被调用?如果是这样,我们应该如何正确调用
startForegroundService
?2017-12-09 更新
不知道为什么大家都说和这个问题一样:Context.startForegroundService() did not then call Service.startForeground()
你甚至可以在那里找到我的评论。
它不同的原因是您可以在此问题的第一行看到的内容。我已将
startForegroundService
和 startForeground
放在正确的位置,但它仍然随机显示此错误。这是谷歌问题跟踪器:https://issuetracker.google.com/issues/67920140
这是关于服务生命周期的另一个问题。
服务关闭后,断言可能会被错误触发。
最佳答案
我面临着同样的问题,花了一些时间找到了一个解决方案,你可以尝试下面的代码。如果您使用 Service
则将此代码放入 onCreate
否则您使用 Intent Service
则将此代码放入 onHandleIntent
。
if (Build.VERSION.SDK_INT >= 26) {
String CHANNEL_ID = "my_app";
NotificationChannel channel = new NotificationChannel(CHANNEL_ID,
"MyApp", NotificationManager.IMPORTANCE_DEFAULT);
((NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE)).createNotificationChannel(channel);
Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("")
.setContentText("").build();
startForeground(1, notification);
}
并称之为
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(getSyncIntent(context));
} else {
context.startService(getSyncIntent(context));
}
关于android - Context.startForegroundService() 然后没有调用 Service.startForeground,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46803663/