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