ACTION_MEDIA_BUTTON Приемник не вызывается после попытки почти всего, что я мог

Я хочу вызвать функцию, когда MEDIA_BUTTONнажата. Но в расширенном классе Constructor называется, но onReceive функция не вызывается.

Я тестировал это на BluetoothDevice, так как это не влияет. этим

Содержимое в файле Manifest.xml

      <uses-permission android:name="android.permission.BLUETOOTH" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.NotificationManager">
    <meta-data
        android:name="com.google.android.actions"
        android:resource="@xml/actions" />

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service
        android:name=".NotificationService"
        android:enabled="true"
        android:label="@string/app_name"
        android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
        <intent-filter>
            <action android:name="android.service.notification.NotificationListenerService" />
        </intent-filter>
    </service>

    <receiver android:name=".MediaButtonIntentReceiver">
        <intent-filter android:priority="1000000000">
            <action android:name="android.intent.action.MEDIA_BUTTON" />
        </intent-filter>
    </receiver>

</application>

Как я зарегистрировался BroadcastReceiver в MainActivity.java

          IntentFilter filter = new IntentFilter(Intent.ACTION_MEDIA_BUTTON);
    MediaButtonIntentReceiver r = new MediaButtonIntentReceiver();
    registerReceiver(r, filter);

Контент в MediaButtonIntentReceiver.java

          import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.util.Log;
    import android.view.KeyEvent;
    import android.widget.Toast;
    public class MediaButtonIntentReceiver extends BroadcastReceiver{
        private static final String TAG = "MediaButtonReceive";
        MediaButtonIntentReceiver(){
            super();
            Log.e(TAG, "Constructor Called"); //Also tried without Constructor.
        }

        public void onReceive(Context context, Intent intent) {
            Log.e(TAG, "In onReceive");       // It won't even print this.

            String intentAction = intent.getAction();
            if (Intent.ACTION_MEDIA_BUTTON.equals(intentAction)) {
                KeyEvent event = (KeyEvent) intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);

                if (event == null) {
                    return;
                }
                int keycode = event.getKeyCode();
                int action = event.getAction();

                if (keycode == KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE || keycode == KeyEvent.KEYCODE_HEADSETHOOK) {
                    if (action == KeyEvent.ACTION_DOWN) {
                        Log.e(TAG, "Button Pressed");    //Call function here.
                        Toast.makeText(context, "Button pressed !!", Toast.LENGTH_SHORT).show();
                        if (isOrderedBroadcast()) {
                            abortBroadcast();
                        }
                    }
                }
            }
        }
    }

Я сослался как минимум на 8 ответов Stack, но не смог решить эту проблему.

1 ответ

Это поздно, но причина, по которой он не работал, было обновление Android . Начиная с Android 8.0, приемник статического вещания работать не будет. Вы должны динамически зарегистрировать его после запуска приложения.

Другие вопросы по тегам