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
- Redirect
- Android
- 자바스크립트
- Bootstrap
- Apache Lucene
- MSsql
- 이클립스
- MS-SQL
- html
- MANTIS
- Maven
- jsp
- Web Service
- varags
- 컬럼명
- decompiler
- javascript
- 웹뷰
- 웹 서비스
- scrollView
- STS
- WebView
- 자바
- asp.net
- Eclipse
- C#
- 안드로이드
- Java
- SpringSource Tool Suite
- TextBox
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