我正在尝试使用以下方法播放SoundManager,但它仍然使用媒体卷而不是铃声音量。为什么呢?
float streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_RING);
streamVolume = streamVolume / mAudioManager.getStreamMaxVolume(AudioManager.STREAM_RING);
mSoundPool.play((Integer) mSoundPoolMap.get(index), streamVolume,streamVolume, 1, 0, speed);
答案 0 :(得分:0)
根据Michael的说法,我必须在我的SoundManager中的“initSounds”中更改它。谢谢迈克尔。