Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

Do you have check your manifest ? I think you are forget to give any permittion to your activity.

Enjoy Coding...

:)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.