Tagged Questions
2
votes
2answers
5k views
Why is my SoundPool mute?
I setup my SoundPool, and load a sound resource as this in onCreate():
soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
soundId = soundPool.load(this, R.raw.edible_underwear, 1);
And ...