2013年1月17日 星期四

跳轉 Google Play 商店

跳轉 Google Play 商店有兩個方式
(一) 跳轉APP Detail
(二) 調轉 APP Search

範例如下:
(一)
CODE:
                Uri uri = Uri.parse("market://details?id=PackageName");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
context.startActivity(intent);




















(二)
CODE:
                Uri uri = Uri.parse("market://search?q=pname:PackageName");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
context.startActivity(intent);



沒有留言:

張貼留言