我的Android服务中有Context.startForegroundService() did not then call Service.startForeground()
,但我无法弄清楚为什么会这样。
我的应用程序用于媒体流,只有当您从前台通知暂停(将其转换为常规通知)时才会出现此错误,然后您将通知刷掉,这是为了停止我的服务。
以下是调用startForegroundService
,startForeground
和stopForeground
方法的唯一方法:
private void configureServiceState(long action) {
if (action == PlaybackStateCompat.ACTION_PLAY) {
if (!mServiceInStartedState) {
ContextCompat.startForegroundService(
StreamingService.this,
new Intent(
StreamingService.this,
StreamingService.class));
mServiceInStartedState = true;
} startForeground(NOTIFICATION_ID,
buildNotification(PlaybackStateCompat.ACTION_PAUSE));
} else if (action == PlaybackStateCompat.ACTION_PAUSE) {
stopForeground(false);
NotificationManager mNotificationManager
= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
assert mNotificationManager != null;
mNotificationManager
.notify(NOTIFICATION_ID,
buildNotification(PlaybackStateCompat.ACTION_PLAY));
} else if (action == PlaybackStateCompat.ACTION_STOP) {
mServiceInStartedState = false;
stopForeground(true);
stopSelf();
}
}
这里是设置通知的删除意图的地方:
.setDeleteIntent(
MediaButtonReceiver.buildMediaButtonPendingIntent(
this, PlaybackStateCompat.ACTION_STOP));
此configureServiceState(long action)
方法只能从我的MediaSession
回调中调用:onPlay
,onPause
和onStop
...显然,该操作是预期的操作要进行。
从我的用户界面执行onStop
,或从用户界面调用onPause
后跟onStop
(镜像清除通知所需的操作)时,不会发生错误来自通知。
我可以找到关于此错误的所有信息是,当您拨打startForegroundService
但是在5秒内没有呼叫startForeground
时,可能会发生这种情况...但是startForeground
会立即被调用唯一一次调用startForegroundService
。
此外,onPlaybackStateChange
将转到onStop
方法中的“正在播放”活动,该活动会触发该活动以finish()
运行,以便该服务不会以此方式重新启动
我在这里缺少什么?
其他详情:
由于代码执行从未达到其任何方法,因此我的“正在播放”活动未部分重新启动该服务。
在产生错误之前,代码执行似乎永远不会重新输入configureServiceState
如果我在服务的MediaButtonReceiver.handleIntent(mMediaSession, intent);
中的最后一个可能点(onStartCommand
)添加断点,暂停执行并尝试调试会导致调试器在暂停后立即断开连接
为前台与常规通知尝试不同的通知渠道也无济于事
将暂停的通知从锁定屏幕上移开不会导致错误,只有在手机解锁时才会出现错误;无论我的应用程序是否实际打开
完全例外:
android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1870)
at android.os.Handler.dispatchMessage(Handler.java:105)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6809)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
我的测试设备运行的是Android 8.0,项目最小API为21,目标API为27.设备API为26。
答案 0 :(得分:5)
您需要为Android O API 26及更高版本使用NotificationChannel,否则您将收到您遇到的错误。请参阅Android文档中的以下声明 - Create and Manage Notification Channels:
从Android 8.0(API级别26)开始,必须将所有通知分配给频道。
以下是我用于构建媒体通知的方法的摘录(从中获取所需内容)。你可以看到有一个Android O设备的检查,其中有一个特定的方法来处理这种情况:
private fun compileNotification(context: Context, action: NotificationCompat.Action, mediaSession: MediaSessionCompat, controller: MediaControllerCompat, mMetadata: MediaMetadataCompat, art: Bitmap?, mPlaybackState: PlaybackStateCompat) {
val description = mMetadata.description
// https://stackoverflow.com/questions/45395669/notifications-fail-to-display-in-android-oreo-api-26
@TargetApi(26)
if(Utils.hasO()) {
val channelA = mNotificationManager?.getNotificationChannel(NotificationChannelID.MEDIA_SERVICE.name)
if(channelA == null) {
val channelB = NotificationChannel(NotificationChannelID.MEDIA_SERVICE.name,
"MediaService",
NotificationManager.IMPORTANCE_DEFAULT)
channelB.setSound(null, null)
mNotificationManager?.createNotificationChannel(channelB)
}
}
val notificationBuilder = if(Utils.hasLollipop()) {
NotificationCompat.Builder(context, NotificationChannelID.MEDIA_SERVICE.name)
} else {
NotificationCompat.Builder(context)
}
notificationBuilder
.setStyle(android.support.v4.media.app.NotificationCompat.MediaStyle()
// Show actions 0,2,4 in compact view
.setShowActionsInCompactView(0,2,4)
.setMediaSession(mediaSession.sessionToken))
.setSmallIcon(R.drawable.logo_icon)
.setShowWhen(false)
.setContentIntent(controller.sessionActivity)
.setContentTitle(description.title)
.setContentText(description.description)
.setLargeIcon(art)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setOngoing(mPlaybackState.state == PlaybackStateCompat.STATE_PLAYING)
.setOnlyAlertOnce(true)
if(!Utils.hasLollipop()) {
notificationBuilder
.setStyle(android.support.v4.media.app.NotificationCompat.MediaStyle()
// Show actions 0,2,4 in compact view
.setShowActionsInCompactView(0,2,4)
.setMediaSession(mediaSession.sessionToken)
.setShowCancelButton(true)
.setCancelButtonIntent(MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_STOP)))
// Stop the service when the notification is swiped away
.setDeleteIntent(MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_STOP))
}
notificationBuilder.addAction(NotificationCompat.Action(
R.drawable.exo_controls_previous,
"Previous",
MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS)))
notificationBuilder.addAction(NotificationCompat.Action(
R.drawable.ic_replay_10_white_24dp,
"Rewind",
MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_REWIND)))
notificationBuilder.addAction(action)
notificationBuilder.addAction(NotificationCompat.Action(
R.drawable.ic_forward_10_white_24dp,
"Fast Foward",
MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_FAST_FORWARD)))
notificationBuilder.addAction(NotificationCompat.Action(
R.drawable.exo_controls_next,
"Next",
MediaButtonReceiver.buildMediaButtonPendingIntent(context,
PlaybackStateCompat.ACTION_SKIP_TO_NEXT)))
(context as MediaService).startForeground(NOTIFICATION_ID, notificationBuilder.build())
}
在onStop()
回调中,您需要在服务中致电stopSelf()
。然后,当您调用服务onDestroy()
方法时,您需要清理一些事情(适用于您的情况),如下所示:
override fun onDestroy() {
super.onDestroy()
abandonAudioFocus()
unregisterReceiver(mNoisyReceiver)
//Deactivate session
mSession.isActive = false
mSession.release()
NotificationManagerCompat.from(this).cancelAll()
if(mWiFiLock?.isHeld == true) mWiFiLock?.release()
stopForeground(true)
}
我还没有包含上述某些方法的详细信息,但方法名称应该是自我评论 - 如果我可以包含更多详细信息,请告诉我。其中一些可能是矫枉过正,但在你的情况下可能会解决问题。
我很确定这会解决您的问题。如果它没有更多的想法。
答案 1 :(得分:4)
这就浪费了太多时间。我不确定这是您遇到的情况,但在我的情况下,我一直收到此异常,因为我的scala.concurrent.impl.Promise$DefaultPromise@69b28a51 cannot be cast to Either
是NOTIFICATION_ID
...使用任何其他值似乎解决了这个问题.- _-
答案 2 :(得分:1)
我遇到了同样的问题。问题是在通知项目上使用PendingIntent.getForegroundService()
单击以更新媒体服务。仅使用PendingIntent.getService
解决了我的问题。