2013. 8. 2. 09:30
[출처] [안드로이드] disable 이미지 추가 방법|작성자 까미유
안드로이드 마켓 앱을 실행하여서 현재 실행 중인 앱에 대한 정보를 보여주는 예제는 다음과 같다.
Intent intent = new Intent( Intent.ACTION_VIEW );
intent.setData( Uri.parse( "market://details?id=com.android.example" ) );
startActivity( intent );
Summary of URI formats
The table below provides a summary of the URIs currently supported by the Android Market (both on the web and in the Android application), as discussed in the previous sections.
For this result | Use this URI in a web page link | Or this URI in an ACTION_VIEW intent |
---|---|---|
Display the details screen for a specific application | http://market.android.com/details?id=<package_name> | market://details?id=<package_name> |
Search for applications using a general string query. | http://market.android.com/search?q=<query> | market://search?q=<query> |
Search for applications by publisher name | http://market.android.com/search?q=pub:<publisher_name> | market://search?q=pub:<publisher_name> |
[참고자료] http://developer.android.com/guide/publishing/publishing.html
[출처] [안드로이드] disable 이미지 추가 방법|작성자 까미유
[출처] [안드로이드] disable 이미지 추가 방법|작성자 까미유
[출처] [안드로이드] disable 이미지 추가 방법|작성자 까미유
'JAVA > Android' 카테고리의 다른 글
[안드로이드] 진동/무음 모드 확인 방법 (0) | 2013.08.02 |
---|---|
[Android] 주소록에서 이름/전화번호 가져오는 방법 (0) | 2013.08.02 |
[Android] 바탕화면에 단축 아이콘 생성 방법 (2) | 2013.08.02 |
[Android] 리시트뷰. 텍스트 필터. (0) | 2013.07.31 |
[Android] SeekBar로 밝기조절 (0) | 2013.07.31 |