Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Maven
- jsp
- 웹뷰
- 이클립스
- 웹 서비스
- 자바
- 자바스크립트
- asp.net
- MS-SQL
- Eclipse
- Redirect
- Android
- TextBox
- Apache Lucene
- 컬럼명
- 안드로이드
- C#
- Web Service
- WebView
- MSsql
- varags
- javascript
- scrollView
- Java
- STS
- MANTIS
- Bootstrap
- html
- SpringSource Tool Suite
- decompiler
Archives
- Today
- Total
목록intent (1)
bboks.net™
앱에서 다른앱 실행하기
방법1 Intent intent = new Intent(Intent.ACTION_MAIN); //, intent.setClassName("com.example.package", "com.example.package.ActivityToStart"); startActivity(intent); 방법2 PackageManager pm = getPackageManager(); Intent intent = pm.getLaunchIntentForPackage("com.example.package"); startActivity(intent); 두번째 방법을 추천 [출처] Calling an app from another app
Mobile Programming/Android
2014. 7. 17. 14:26