onCreate()
サウンドmp3ファイルをメソッドで無限にループさせたい。
onCreateメソッドの私のコードは次のとおりです:
mMediaPlayer = MediaPlayer.create(getApplicationContext(), R.raw.sound_7);
mMediaPlayer.setVolume(0.2f, 0.2f);
Log.e("beep","started1");
mMediaPlayer.setOnCompletionListener(new OnCompletionListener() {
public void onCompletion(MediaPlayer arg0) {
mMediaPlayer = MediaPlayer.create(getApplicationContext(), R.raw.sound_7);
mMediaPlayer.start();
}
});
mMediaPlayer.setLooping(true);
Log.d("beep","started0");
mMediaPlayer.start();
しかし、このコードは私のオーディオファイルを一度だけ再生します。助けてください !!
前もって感謝します。