我在onCreate()
方法中寫了這段代碼,但沒有播放任何東西!Android soundPool支持擴展?
SoundPool mSound = new SoundPool(1, AudioManager.STREAM_MUSIC, 0);
AudioManager mAudioManager = (AudioManager)this.getSystemService(Context.AUDIO_SERVICE);
int soundID = mSound.load(this, R.raw.sound1, 1);
int streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
mSound.play(soundID, streamVolume, streamVolume, 1, 0, 1f);
問題1:有我的代碼有問題嗎?我做錯了嗎?
如果沒有,
問題2:我的聲音是.amr
文件。它是否支持SoundPool
?什麼是支持的類型?
你完全正確。我想通了,忘了更新問題:)。謝謝。 – iTurki