How to prevent app choosing dialog?

100 Views Asked by At

When I get KeyEvent.KEYCODE_MUSIC from a remote controller the OS automatically opens a dialog with a suitable apps that can handle the intent. I want to know is that possible to do not let the dialog appear at all ?

The intenet code:

 <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
            <action android:name="android.intent.action.MUSIC_PLAYER" />
            <action android:name="android.intent.action.MAIN" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT"   />
            <category android:name="android.intent.category.APP_MUSIC" />
            <category android:name="android.intent.category.LAUNCHER" />
            <category android:name="android.intent.category.CATEGORY_APP_MUSIC" />
        </intent-filter>
    </activity>
    <receiver android:name="com.example.aram.keycontrol.MediaButtonIntentReceiver" >
        <intent-filter android:priority="999">
            <action android:name="android.intent.action.MEDIA_BUTTON" />
            <action android:name="android.intent.action.HEADSET_PLUG" />
        </intent-filter>
    </receiver>
0

There are 0 best solutions below