我正在做一個報警系統。警報工作正常,但聲音不起作用..我正在做一個小測試,我不明白問題出在哪裏。在警報活動中,我有以下代碼:Alarmmanager&Soundpool - Android
setVolumeControlStream(AudioManager.STREAM_MUSIC);
soundPool = new SoundPool(20, AudioManager.STREAM_MUSIC, 0);
try {
AssetManager assetManager = getAssets();
AssetFileDescriptor descriptor = assetManager.openFd("sound.ogg");
mySoundId = soundPool.load(descriptor, 1);
} catch (IOException e) {
Log.d(TAG,"We've problem's!!, "
+ e.getMessage());
}
soundPool.play(mySoundId, 1, 1, 0, 0, 1);
有沒有錯誤..但音樂不起作用..相反,如果我編程播放在底部的工作!任何人都可以幫助我嗎?
'soundPool.play()'返回什麼? – iTurki
@iturki返回零:( –