Tagged Questions
0
votes
0answers
128 views
How to load sounds from a SoundManager to all activities in one step?
I am trying to figure out how to load a variety of sounds in an app. I have my soundmanager working smoothly, shown below:
package com.beeseries.contextclues;
import java.util.HashMap;
import ...
1
vote
1answer
60 views
How to Read and Write SoundPool object into Parcel?
Beginner here. I have a class with a SoundPool object in it. I would like to have the class implement Parcelable so that its instance can be passed between activities (so that I only load the sounds ...
3
votes
3answers
342 views
Can soundPool be played in oncreate()?
I am working on an app, wherein when a new activity is started, it should start playing a sound.
So I used mediaplayer to play the sound in oncreate and It worked fine. But when I tried to use ...
