3

我正在尝试使用 MediaSessionCompat 类从 Android 中的服务处理耳机挂钩以启动我的应用程序的操作,这与媒体播放器的目的不同。

现在,我编写的这段代码可以在 Android 7 及更低版本中运行,但不适用于 Android 8.0 及更高版本,我不知道为什么。

ComponentName componentName = new ComponentName(getApplicationContext(), MediaButtonReceiver.class);
final Intent mediaButtonIntent = new Intent(Intent.ACTION_MEDIA_BUTTON);
mediaButtonIntent.setComponent(componentName);

PendingIntent mediaButtonReceiverPendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, mediaButtonIntent, 0);

MediaSessionCompat mediaSessionCompat = new MediaSessionCompat(getApplicationContext(), getPackageName());
mediaSessionCompat.setCallback(new MediaSessionCompat.Callback()
    {
        @Override
        public boolean onMediaButtonEvent(Intent mediaButtonEvent)
        {

            KeyEvent keyEvent =
                    (KeyEvent) mediaButtonIntent.getExtras().get(Intent.EXTRA_KEY_EVENT);
            if (keyEvent.getAction() == KeyEvent.ACTION_DOWN)
            {
                if (keyEvent.getKeyCode() == KeyEvent.KEYCODE_HEADSETHOOK)
                {
                    Log.d(TAG, STRING_EXAMPLE);
                    return true;
                }
            }

            return super.onMediaButtonEvent(mediaButtonEvent);
        }
    });

    mediaSessionCompat.setActive(true);

    mediaSessionCompat.setFlags(MediaSessionCompat.FLAG_HANDLES_MEDIA_BUTTONS | MediaSessionCompat.FLAG_HANDLES_TRANSPORT_CONTROLS);
    mediaSessionCompat.setMediaButtonReceiver(mediaButtonReceiverPendingIntent);

我试图将此代码放入 MainActivity 的 OnStart() 和我的服务的 onStartCommand 中,但什么也没发生。

我也试过把它留在我的清单中,但没有用。

<receiver android:name=".MediaButtonServiceListener">
        <intent-filter>
            <action android:name="android.intent.action.MEDIA_BUTTON" />
        </intent-filter>
    </receiver>

我离开了我的接收器和我的服务,也许我在某个地方受到了委屈,或者任何人都可以帮助我理解为什么不起作用,不幸的是,Android 的文档对这件事毫无用处。

接收者:

public class MediaButtonServiceListener extends MediaButtonReceiver {

@Override
public void onReceive(Context context, Intent intent) {

    Log.d(TAG, STRING_EXAMPLE);
    }
}

服务:

public class ExampleService extends Service {

@Override
public void onCreate() {
    super.onCreate();
}

@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
    Intent notificationIntent = new Intent(this, MainActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

    Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
            .setContentTitle("Example Service")
            .setContentText("Service in foregound")
            .setSmallIcon(R.drawable.ic_android)
            .setContentIntent(pendingIntent)
            .build();

    startForeground(1, notification);

    return START_NOT_STICKY;
}

@Nullable
@Override
public IBinder onBind(Intent intent) {
    return null;
}

@Override
public void onDestroy() {
    super.onDestroy();
}
4

0 回答 0