[Android] 안드로이드 마켓 앱을 실행하는 방법
안드로이드 마켓 앱을 실행하여서 개발자 앱을 링크해주는 방법입니다.
LinearLayout more_app = (LinearLayout) findViewById (R.id.layout_more_app);
more_app.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Uri uri = Uri.parse("https://play.google.com/store/apps/developer?id=Wings+of+Freedom");
Uri uri = Uri.parse("market://search?q=pub:Wings+of+Freedom");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
}
});
https://developer.android.com/distribute/tools/promote/linking.html
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> |
'안드로이드 > 개발 TIP' 카테고리의 다른 글
Android 다국어 이미지 (0) | 2017.11.13 |
---|---|
안드로이드 다국어 지원을 위한 언어 코드 (0) | 2017.11.13 |
안드로이드/Android 언어 설정 하기 (0) | 2017.11.13 |
안드로이드 다국어 처리를 위한 리소스 폴더 이름 (0) | 2017.11.13 |
[Android] 안드로이드 디버깅 - Logcat, Log (0) | 2017.11.13 |
안드로이드 APP 개발 입문_AVD (Android Virtual Device) 설정하기 (0) | 2017.11.13 |
이클립스(4.4)에서 안드로이드 V7 MATERIAL DESIGN 위젯을 사용 (0) | 2017.11.13 |
안드로이드 XML 파싱 (0) | 2017.11.13 |