티스토리 뷰


//타 어플의 Activity 실행
       ComponentName cn = new ComponentName("패키지경로","패키지경로.액티비티명");
//ex) ("com.android.music" ,"com.android.music.MusicBrowserActivity") 
       Intent intent = new Intent(Intent.ACTION_MAIN);
       intent.addCategory(Intent.CATEGORY_LAUNCHER);
       intent.setComponent(cn);
       startActivity(intent);

//브로드 캐스트
 Intent intent = new Intent("액션명"); // ex) ("com.android.music.MediaPlaybackService")
sendBroadcast(intent);


[작성자] devbible.tistory.com


'Development' 카테고리의 다른 글

[Android] 파일 입출력  (0) 2011.11.04
[Android] ViewFlipper  (0) 2011.10.31
[Android] performClick()  (0) 2011.10.26
[Android] View의 절대좌표 구하기  (0) 2011.10.24
[Android] intent 활용  (0) 2011.10.19
댓글