Android 제3자 프로그램 시작 방법 요약

Android 제3자 프로그램 시작 방법 요약
방법 1:

Intent intent = new Intent(); 
intent.setClassName(<package name>, <class name>); 
startActivity(intent);
방법 2:

Intent i=new Intent;
ComponentName com= new ComponentName(<Package Name> , <Calss Name>); 
i.setComponent(com); 
startActivity(i); 
미디어 라 이브 러 리 시작

Intent i = new Intent();

ComponentName comp = new ComponentName("com.Android.camera","com.android.camera.GalleryPicker");

i.setComponent(comp);

i.setAction("android.intent.action.VIEW");

startActivity(i);

시동 카메라

Intent mIntent = new Intent();

ComponentName comp = new ComponentName("com.android.camera","com.android.camera.Camera");

mIntent.setComponent(comp);

mIntent.setAction("android.intent.action.VIEW");

startActivity(mIntent);

htmlviewer 를 시작 하고 지정 한 파일 을 엽 니 다.TXT 는 ANSI 가 아 닙 니 다.그렇지 않 으 면 혼 란 스 러 울 수 있 습 니 다.

Intent intent = new Intent();

ComponentName cn = new ComponentName("com.android.htmlviewer", "com.android.htmlviewer.HTMLViewerActivity");

intent.setComponent(cn);

Uri uri = Uri.fromFile(new File("/sdcard/demo.txt"));

intent.setDataAndType(uri, "text/plain");

startActivity(intent);

읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기