미디어 플레이어 루핑 : Android 3 초의 mp3 파일이 있습니다. 사용자가 일시 중지 버튼을 클릭 한 상태에서 해당 mp3 파일을 계속 재생하고 싶습니다. 단일 파일을 반복하고 사용자가 일시 중지 할 때까지 다시 재생하는 방법이 있습니까? mMediaPlayer.setLooping(true); 이것은 내 프로젝트에서 작동합니다. mediaPlayer.setLooping (true); mediaPlayer.start (); 이후 public static void PlayAudio(Context c, int id){ mediaPlayer = MediaPlayer.create(c, id); soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC,50); if ..