I am a android developer.I make a music player application.Now I want to handle play and pause event by headset.this is my code for register receiver:
IntentFilter iF = new IntentFilter(Intent.ACTION_MEDIA_BUTTON);
iF.setPriority(10000);
registerReceiver(mButtonReceiver, iF);
and then get action in receiver class. but not working. please help me!!