<웹브라우져를 이용한 마켓의 html 설명 화면으로 가기>
1. 특정 앱으로 바로가기 (패키지명 이용)
https://market.android.com/details?id=dingdong.game.bb
https://play.google.com/store/apps/details?id=dingdong.game.bb (new)
2. 제작자 검색하여 바로가기
https://market.android.com/search?q=pub:Heaven's tear
<마켓 앱을 이용여 상세 화면으로 가기>
: java 소스에서 intent 이용 예
ex) Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=dingdong.game.bb"));
1. 특정 앱으로 바로가기 (패키지명 이용)
https://market.android.com/details?id=dingdong.game.bb
https://play.google.com/store/apps/details?id=dingdong.game.bb (new)
2. 제작자 검색하여 바로가기
https://market.android.com/search?q=pub:Heaven's tear
https://play.google.com/store/search?q=pub:Heaven's tear (new)
3. 검색어로 검색하여 바로가기
https://market.android.com/search?q=369
3. 검색어로 검색하여 바로가기
https://market.android.com/search?q=369
https://play.google.com/store/search?q=369 (new)
(검색어가 369인 경우)
https://market.android.com/search?q=369+heaven
(검색어가 369인 경우)
https://market.android.com/search?q=369+heaven
https://play.google.com/store/search?q=369+heaven (new)
(검색어가 369 와 heaven 인 경우)
(검색어가 369 와 heaven 인 경우)
<마켓 앱을 이용여 상세 화면으로 가기>
: java 소스에서 intent 이용 예
ex) Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=dingdong.game.bb"));
startActivity(intent);
: xml 파일에서 intent 이용 예
ex) <intent android:action="android.intent.action.VIEW"
android:data="market://details?id=dingdong.game.bb" />
1. 특정 앱 다운로드 화면(상세화면)으로 가기
market://details?id=dingdong.game.bb
2. 제작자 검색 목록으로 가기
market://search?q=pub:Heaven's tear
3. 검색어로 검색하여 가기
market://search?q=369
<T Store 앱을 이용여 바로 상세 화면으로 가기>
1. 특정 앱 다운로드 화면(상세화면)으로 가기
: AID가 0000266823 인 경우
Intent intent = new Intent();
2. 검색어로 검색하여 가기
: 검색어가 damianjj 인 경우
<참고 사이트>
http://developer.android.com/guide/publishing/publishing.html
T Store 링크 연동
ex) <intent android:action="android.intent.action.VIEW"
android:data="market://details?id=dingdong.game.bb" />
1. 특정 앱 다운로드 화면(상세화면)으로 가기
market://details?id=dingdong.game.bb
2. 제작자 검색 목록으로 가기
market://search?q=pub:Heaven's tear
3. 검색어로 검색하여 가기
market://search?q=369
<T Store 앱을 이용여 바로 상세 화면으로 가기>
1. 특정 앱 다운로드 화면(상세화면)으로 가기
: AID가 0000266823 인 경우
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.setClassName("com.skt.skaf.A000Z00040", "com.skt.skaf.A000Z00040.A000Z00040");
intent.setAction("COLLAB_ACTION");
intent.putExtra("com.skt.skaf.COL.URI", "PRODUCT_VIEW/0000266823/0".getBytes());
intent.putExtra("com.skt.skaf.COL.REQUESTER", "A000Z00040");
startActivity(intent);
2. 검색어로 검색하여 가기
: 검색어가 damianjj 인 경우
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.setClassName("com.skt.skaf.A000Z00040", "com.skt.skaf.A000Z00040.A000Z00040");
intent.setAction("COLLAB_ACTION");
intent.putExtra("com.skt.skaf.COL.URI", "SEARCH_ACTION/0/damianjj".getBytes());
intent.putExtra("com.skt.skaf.COL.REQUESTER", "A000Z00040");
startActivity(intent);
<참고 사이트>
http://developer.android.com/guide/publishing/publishing.html
T Store 링크 연동
'안드로이드 개발 팁' 카테고리의 다른 글
안드로이드 디자인 사이트 (0) | 2012.01.17 |
---|---|
안드로이드 앱에서 시작시 간단하게 최신 버젼(version) 확인하고, 업데이트 요청 팝업 띄우기 (2) | 2011.12.29 |
android intent 1 (0) | 2011.12.15 |
android 화면 꺼짐을 막는방법 (0) | 2011.12.09 |
Android String 호출 방법 (0) | 2011.12.09 |