728x90
public void startMusic(){
Intent intent = this.getPackageManager().getLaunchIntentFormPackage("com.sec.android.app.music");
this.startActivity(intent); // 뮤직플레이어 어플 실행
Intent intent2 = new Intent("com.android.music.musicservicecommand");
intent2.putExtra("command", "play");
sendBroadcast(intent2); // 노래 재생
}
728x90
'Android' 카테고리의 다른 글
android music player control adb (0) | 2013.09.07 |
---|---|
안드로이드 볼륨 조절 소스 (0) | 2013.08.29 |
안드로이드 현재 어플리케이션 종료 소스 (0) | 2013.08.26 |
안드로이드 뮤직플레이어 어플 실행 소스 (0) | 2013.08.26 |
안드로이드 simple 뮤직 플레이어 (0) | 2013.08.26 |