Is there a way to get/set media volume? I have tried the following:
AudioManager audio = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
int currentVolume = audio.getStreamVolume(AudioManager.STREAM_RING);
but it returns the ringtone volume.
Have a try with this:
setVolumeControlStream(AudioManager.STREAM_MUSIC);
Inside onCreate:
Override onKeyDown: