I would like to play an audio file from the sdcard. How can I read the audio file and play it? Below is my code to play audio file:
int sound1;
sound1 = mSoundPool.load(this, R.raw.om, 1);
mSoundPool.play(sound1, 1, 1, 1, time - 1, 1);
Here in the above code i am using soundpool to play the audio file from raw folder but i need to play the audio file from sdcard using soundpool.
Right now interested to play audio from sdcard.
How to acheive this? please help i need to fix this as soon as possible
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…