How do you get/set media volume (not ringtone volume) in Android?

前端 未结 8 1868
青春惊慌失措
青春惊慌失措 2020-12-01 00:01

Is there a way to get/set media volume? I have tried the following:

AudioManager audio = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
int currentV         


        
8条回答
  •  悲哀的现实
    2020-12-01 00:37

    Instead of AudioManager.STREAM_RING you shoul use AudioManager.STREAM_MUSIC This question has already discussed here.

提交回复
热议问题