I am writing an Android application for version 4.0.3 (ICS) of the Android OS. The issue is that I am not getting the output from my Log.d() in the onReceive() method of the
mediaButtonReceiver = new ComponentName(getPackageName(), MediaButtonReceiver.class.getName());
mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
mAudioManager.registerMediaButtonEventReceiver(mediaButtonReceiver);
This code will bind your headphone button to your app and your app only until you call:
mAudioManager.unregisterMediaButtonEventReceiver(mediaButtonReceiver);