posted by 네코냥이 2013. 8. 2. 09:30


[출처] [안드로이드] disable 이미지 추가 방법|작성자 까미유



안드로이드 마켓 앱을 실행하여서 현재 실행 중인 앱에 대한 정보를 보여주는 예제는 다음과 같다.

 

Intent intent = new IntentIntent.ACTION_VIEW );
intent
.setDataUri.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 resultUse this URI in a web page linkOr this URI in an ACTION_VIEW intent
Display the details screen for a specific applicationhttp://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 namehttp://market.android.com/search?q=pub:<publisher_name>market://search?q=pub:<publisher_name>

 

 

[참고자료] http://developer.android.com/guide/publishing/publishing.html