1. 단순 페이지 이동
Intent intent = new Intent(this, PackageA_2.class);
startActivity(intent);
2. 컴포넌트 이동
Intent intent = new Intent();
ComponentName cn = new ComponentName("com.test.PackageB", "com.test.PackageB.PackageB_1");
intent.setComponent(cn);
startActivity(intent);
'ANDROID의 속삭임' 카테고리의 다른 글
[android][extendList] 확장리스트 (0) | 2013.10.23 |
---|---|
[android][TIP]외부 어플리케이션 실행. (0) | 2013.10.23 |
[android][Notification]통지 등록및 통지유틸 (0) | 2013.09.25 |
[android][라이브러리] 안드로이드 차트 라이브러리 (0) | 2013.09.25 |
[android][SQLite]ContentProvider (0) | 2013.09.24 |