안드로이드 MP3재생 썸네일형 리스트형 안드로이드 - MP3 재생 안드로이드 - MP3 재생 하기 예제 1. 리소스 안의 mp3 재생 - getResources().getIdentifier()로 경로를 알아온다. tmpID = getApplicationContext().getResources().getIdentifier( "sound", "raw", "aa.bb.man"); Context con = getApplicationContext(); mp = MediaPlayer.create(con, tmpID); mp.start(); 2. sdcard안의 mp3재생 - setDataSource()를 이용해서 음원의 경로를 설정 String songPath = "/sdcard/man.mp3"; mp.setDataSource(songPath); 주요 메서드 : 1.prepare.. 더보기 이전 1 다음