반응형
ComponentName compName = new ComponentName(
"com.smaple.example",
"com.smaple.example.exam");
Intent actIntent = new Intent(Intent.ACTION_MAIN);
actIntent.setComponent(compName);
try {
actIntent.putExtra("MBR_NUM", HOme.Data);
} catch (RemoteException e) {
e.printStackTrace();
}
actIntent.putExtra("MEMU_NUMBER", "INTENT_LAUNCHER");
actIntent.putExtra("SEARCH_URL", urlPath + mTopicLinkUrl);
getContext().startActivity(actIntent);
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
[안드로이드] 키보드에 EditText 뷰가 가려질 때 (0) | 2013.01.09 |
---|---|
[안드로이드 ] 키보드 강제로 내리기 올리기 (0) | 2013.01.09 |
이클립스 단축키 (0) | 2012.11.28 |
[안드로이드] 마켓에서 어플 다운받기로 바로가기 (0) | 2012.11.27 |
[안드로이드] 파일 저장.복사 (0) | 2012.11.22 |