android – Context.startForegroundService()然后没有调用Service.startForeground
作者:互联网
我的应用程序将在MainActivity的onCreate中调用startForegroundService(intent).我在服务的onCreate和startCommand中放入了startForeground(ON_SERVICE_CONNECTION_NID,notification).
但我偶尔也会收到这个错误.
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)
怎么会发生这种情况?
是否有可能在5秒内没有调用onCreate或startCommand?
如果是这样,我们应该如何调用startForegroundService而没有错误?
更新2017-12-09
我不知道为什么每个人都说这和这个问题一样:Context.startForegroundService() did not then call Service.startForeground()
你甚至可以在那里找到我的评论.
它的不同之处在于你可以在这个问题的第一行看到的.我已将startForegroundService和startForeground放在正确的位置,但它仍然随机显示此错误.
以下是Google问题跟踪器:https://issuetracker.google.com/issues/67920140
Stopping the service before this happens will cause a crash.
这是关于服务生命周期的另一个问题.
服务关闭后,可能会错误地触发断言.
解决方法:
我面临同样的问题,花了很长时间找到解决方案,你可以尝试下面的代码.如果您使用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,foreground-service 来源: https://codeday.me/bug/20190710/1426792.html