我使用此代码设置扬声器的最大音量。
AudioManager audioManager.setMode(AudioManager.MODE_IN_CALL);
audioManager.setStreamVolume(AudioManager.STREAM_MUSIC,audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC),0);
audioManager.setSpeakerphoneOn(false);
我会增加更多这个音量,但我该怎么办?我试着用这个:
audioManager.setStreamVolume(AudioManager.STREAM_MUSIC,2,0);
但没什么,音量保持在同一水平。
像这样的应用程序:https://play.google.com/store/apps/details?id=com.mxtech.videoplayer.ad
例如,允许您将音量增加到 300%。
有什么帮助吗?谢谢你。