4

我正在构建媒体播放器,并希望处理来自“播放”、“暂停”等通知的操作。在我的活动中我注册了MediaButtonReceiver

registerReceiver(MediaButtonReceiver(), IntentFilter(Intent.ACTION_MEDIA_BUTTON))

并创建了媒体通知

val builder: NotificationCompat.Builder = MediaStyleHelper.from(this, mediaSession!!)
builder.addAction(
                NotificationCompat.Action(
                        android.R.drawable.ic_media_previous,
                        "Previous",
                        MediaButtonReceiver.buildMediaButtonPendingIntent(this, PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS)
                )
        )

但是当我按下媒体通知上的操作按钮时,什么也没有发生。当我添加这些动作时,执行

MediaButtonReceiver.buildMediaButtonPendingIntent(this, PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS)

打印以控制台警告

“W/MediaButtonReceiver:在给定的上下文中找不到唯一的媒体按钮接收器,因此无法构建待处理的意图。”

但是,如果我以编程方式注册它,为什么它没有注册呢?

4

1 回答 1

14

在使用函数之前,您需要按照文档中的说明MediaButtonReceiver将其添加到清单中:

<receiver android:name="androidx.media.session.MediaButtonReceiver" >
  <intent-filter>
    <action android:name="android.intent.action.MEDIA_BUTTON" />
  </intent-filter>
</receiver>

如果您还没有使用 AndroidX 库,则需要使用旧的类名:android.support.v4.media.session.MediaButtonReceiver

于 2019-02-23T19:06:27.557 回答