Android: how to play music at maximum possible volume?

后端 未结 5 1529
-上瘾入骨i
-上瘾入骨i 2020-12-03 04:52

I know the question can be regarded as \"politically incorrect\", but I\'m designing an app which \"by design\" must get the attention of people within the maximum possible

5条回答
  •  温柔的废话
    2020-12-03 05:55

    You can adjust the settings before playing the audio.

    AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
    audioManager.setStreamVolume(AudioManager.STREAM_MUSIC, AudioManager.getStreamMaxVolume(), 0);
    

提交回复
热议问题