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);
As per Michael, I have to change this in "initSounds" in my SoundManager also. Thanks Michael.