I am unable to display volume control in an activity when a sound file is getting played.
I have tried
1. putting setVolumeControlStream(AudioManager.STREAM_MUSIC) in its onCreate() method as suggested here:
http://stackoverflow.com/questions/2539264/volume-control-in-android-application
2. Overriding onKeyDown as follows:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
switch (keyCode) {
case KeyEvent.KEYCODE_VOLUME_UP:
audio.adjustStreamVolume(AudioManager.STREAM_MUSIC,
AudioManager.ADJUST_RAISE, AudioManager.FLAG_SHOW_UI);
return true;
case KeyEvent.KEYCODE_VOLUME_DOWN:
audio.adjustStreamVolume(AudioManager.STREAM_MUSIC,
AudioManager.ADJUST_LOWER, AudioManager.FLAG_SHOW_UI);
return true;
default:
return false;
}
}
Using 1) nothing happens
Using 2) Volume control appears but the volume is set to a constant value and I cannot increment/ decrement the value using the device sound vol. buttons.
I have earlier tried similar approach in another application and it worked. The only difference I think is that this application uses a ActivityGroup.
Will that make a difference?