1

Is there any way to send a media action button to current media player (like Walkman or google play music) to play and pause or next and previous song.

actually i want to create a simple remote control

mhmdbsh
  • 71
  • 5

1 Answers1

4

i find my answer here

if (mAudioManager == null) mAudioManager = (AudioManager)getSystemService(AUDIO_SERVICE);

KeyEvent event = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MEDIA_PLAY);
mAudioManager.dispatchMediaKeyEvent(event);
mhmdbsh
  • 71
  • 5