我正在使用 ACTION_MEDIA_BUTTON 处理程序做一个应用程序,但它似乎总是被 MX Player 或 Apollo 拦截,我没有得到任何意图
我已经尝试在标签中设置 1000 和 2147483647 优先级,并且直接在构造函数之后使用 setPriority
应用程序在没有 MX Player 或 Apollo 时运行
我也尝试过使用 Google Play 中的 Headset Interceptor 应用程序,我尝试使用 Autostarts 应用程序拒绝 MX Player 的事件 - 没有任何帮助
在 onCreate 中:
IntentFilter filter = new IntentFilter(Intent.ACTION_MEDIA_BUTTON);
filter.addAction(Intent.ACTION_HEADSET_PLUG);
filter.setPriority(1000);
registerReceiver(receiver, filter);
在接收器
@Override
public void onReceive(Context context, Intent intent) {
if (Intent.ACTION_MEDIA_BUTTON.equals(intent.getAction())) {
// NEVER REACHES HERE WHEN MX PLAYER PRESENT. WORKS IF NOT
在清单中
<receiver
android:name="BCreceiver"
android:enabled="true">
<intent-filter android:priority="1000">
<action android:name="android.intent.action.MEDIA_BUTTON" />
<action android:name="android.intent.action.HEADSET_PLUG" />
</intent-filter>
</receiver>