I am using the AudioManager in my service to control the media volume, but I can only control the media type, which I write in setStreamVolume()
. I have tried to use getRingerMode()
to get the media type, but the content is my service's.
int currentType = audioManager.getRingerMode();
int currentVoice = audioManager.getStreamVolume(currentType);
audioManager.setStreamVolume(currentType, currentVoice, AudioManager.FLAG_PLAY_SOUND | AudioManager.FLAG_SHOW_UI);
How can I control the other apps volume?