- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[안드로이드] 외부 앱 실행시키기 (launch external app in android) 본문
★─Programing/☆─Android
[안드로이드] 외부 앱 실행시키기 (launch external app in android)
드럼치는한동이 2017. 5. 24. 09:54실행시킬 수 있는 앱 정보 얻기
final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null ); mainIntent.addCategory(Intent.CATEGORY_LAUNCHER); PackageManager pm = context.getPackageManager(); List<resolveinfo> installedApps = pm.queryIntentActivities(mainIntent, 0 ); for (ResolveInfo ai : installedApps) { Log.d( "tag" , ai.activityInfo.packageName); } |
실행시킬 패키지의 액티비를 알 경우,
ComponentName compName = new ComponentName( "com.package" , "com.package.activity" ); Intent intent = newIntent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_LAUNCHER); intent.setComponent(compName); startActivity(intent); |
실행시킬 패키지명만 알 경우,
Intent intent = context.getPackageManager().getLaunchIntentForPackage( "ParkageName" ); startActivity(intent); |
'★─Programing > ☆─Android' 카테고리의 다른 글
[안드로이드] Android device 에 adb 로 파일 일괄넣기 (0) | 2017.05.31 |
---|---|
[안드로이드] 원격지(Server)에 있는 APK 파일의 다운과 설치 (0) | 2017.05.24 |
[안드로이드] MIME-Type List (0) | 2017.05.19 |
[안드로이드] 웹서버에 있는 파일 다운로드 하기 (0) | 2017.05.19 |
[안드로이드] 어플이 apk를 설치하는 소스 (0) | 2017.05.19 |
Comments