출처 :
http://androi.tistory.com/6
<웹브라우져를 이용한 마켓의 html 설명 화면으로 가기>
1. 특정 앱으로 바로가기 (패키지명 이용)
https://market.android.com/details?id=dingdong.game.bb
2. 제작자 검색하여 바로가기
https://market.android.com/search?q=pub:Heaven's tear
3. 검색어로 검색하여 바로가기
https://market.android.com/search?q=369
(검색어가 369인 경우)
https://market.android.com/search?q=369+heaven
(검색어가 369 와 heaven 인 경우)
<마켓 앱을 이용여 상세 화면으로 가기>
: java 소스에서 intent 이용 예
ex) Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=dingdong.game.bb"));
<웹브라우져를 이용한 마켓의 html 설명 화면으로 가기>
1. 특정 앱으로 바로가기 (패키지명 이용)
https://market.android.com/details?id=dingdong.game.bb
2. 제작자 검색하여 바로가기
https://market.android.com/search?q=pub:Heaven's tear
3. 검색어로 검색하여 바로가기
https://market.android.com/search?q=369
(검색어가 369인 경우)
https://market.android.com/search?q=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 링크 연동
com : computer output microfilm 컴퓨터 출력 마이크로필름, 함께, 전혀
'Android > Tip&Tech' 카테고리의 다른 글
액티비티와 태스크 (0) | 2012.02.01 |
---|---|
안드로이드 최신버전 확인하기 (0) | 2012.01.30 |
Lists and focuses in button (1) | 2012.01.26 |
Export an Android SQLite db to an XML file on the SD Card (0) | 2012.01.20 |
리스트뷰에 텍스트 먼저 이미지 늦게~ (0) | 2012.01.18 |