Question

I am trying to play SoundManager using the following, but it still seams to be using the media volume instead of the ringtone volume. Why?

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);
Était-ce utile?

La solution

As per Michael, I have to change this in "initSounds" in my SoundManager also. Thanks Michael.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top