I have this.setVolumeControlStream(AudioManager.STREAM_MUSIC);
at the beginning of all the actions in my application, so when the user presses the volume up or down buttons, he controls the volume of the multimedia.
I have a popup in my program, and when this appears, the user can no longer manage the volume.
If you look at such questions, it seems that setting onKeyup/down
listeners can interfere with the process - but I haven't set any - the only listeners I have for the popup are setOnClickListeners
for buttons and setOnDismissListener
for the window.
How can i fix this?
source share