재생 썸네일형 리스트형 android mp3 재생 얼마전 옥토 경보를 만들때 사용하게 되어 소스 내용 정리를 합니다. 음원 재생 반복 재생을 원할 경우 mediaPlayer.setLooping(true); private MediaPlayer mediaPlayer; private Context context; public void play(){ context = getApplicationContext(); try { stop(); mediaPlayer = MediaPlayer.create(context, R.raw.mp3_file_name); mediaPlayer.setLooping(false); mediaPlayer.start(); }catch (IllegalStateException e) { e.printStackTrace(); } } public v.. 더보기 이전 1 다음