4

我的应用程序将调用startForegroundService(intent). 我把the和of 都放进去了。但我仍然偶尔会收到此错误。onCreateMainActivitystartForeground(ON_SERVICE_CONNECTION_NID, notification)onCreatestartCommandService

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 秒内没有调用onCreateor ?startCommand如果是这样,我们应该如何正确调用startForegroundService

2017-12-09 更新

不知道为什么大家都说和这个问题一样:Context.startForegroundService() 没有然后调用Service.startForeground() 你甚至可以在那边找到我的评论。

它不同的原因是你可以在这个问题的第一行看到。我已将startForegroundServiceandstartForeground放在正确的位置,但它仍然随机显示此错误。

这是谷歌问题跟踪器:https ://issuetracker.google.com/issues/67920140

在此之前停止服务将导致崩溃。

这是服务生命周期的另一个问题。服务关闭后,断言可能会被错误触发。

4

3 回答 3

0

我在 Galaxy Tab A(Android 8.1.0)上遇到了这个问题。在我的应用程序中,我在MainApplication(应用程序扩展类)的构造函数中启动了一个前台服务。使用调试器,我发现OnCreate()startForegroundService(intent). 即使startForeground(ON_SERVICE_CONNECTION_NID, notification)被叫进来,我也崩溃了OnCreate()

在尝试了不同的方法后,我发现一个适合我的方法如下:

在构造函数中,我曾经AlarmManager唤醒了一个receiver,在receiver中,我启动了前台服务。

我猜我遇到问题的原因是应用程序启动的繁重工作量延迟了前台服务的创建。

试试我的方法,你也可以解决问题。祝你好运。

于 2019-05-23T18:14:04.333 回答
0

我面临同样的问题,花时间找到解决方案后,您可以尝试下面的代码。如果您使用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));
    }
于 2018-04-09T07:24:09.817 回答
0

我有同样的问题。
最后帮助我的是尽早初始化 NotificationChannel(我在应用程序类本身中完成了它),然后在服务中创建和使用通知。

我把它放在应用程序类中:

private void createNotificationChannel() {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        CharSequence name = "MyStreamingApplication";
        String description = "radio";
        int importance = NotificationManager.IMPORTANCE_DEFAULT;
        NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, name, importance);
        mChannel.setSound(null, null);
        mChannel.enableVibration(false);
        mChannel.setDescription(description);
        notificationManager.createNotificationChannel(mChannel);
    }
}

在我调用的服务的 onStartCommand 方法中:

if (Build.VERSION.SDK_INT > Build.VERSION_CODES.N_MR1) {
        startForeground(NOTIFICATION_ID, createNotification());
    } 
于 2018-04-25T11:36:19.713 回答