如何在铃声音量设置Soundmanager播放音量?

时间:2014-02-05 00:28:43

标签: android audio volume

我正在尝试使用以下方法播放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);

1 个答案:

答案 0 :(得分:0)

根据Michael的说法,我必须在我的SoundManager中的“initSounds”中更改它。谢谢迈克尔。