Search code examples
androidmediavolumeforeground

How to make volume rocker affect media volume when app is in foreground?


I would like to have the volume rocker affect media volume when app is in foreground. How would I do that?


Solution

  • Per the volume controls documentation:

    To ensure that volume controls adjust the correct stream, you should call setVolumeControlStream() passing in AudioManager.STREAM_MUSIC.

    setVolumeControlStream(AudioManager.STREAM_MUSIC);