我知道我們可以啓動谷歌Play應用特定的產品是這樣的:谷歌內部的Android應用播放
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);
但我不想離開我的應用程序,因爲畢竟用戶不能重新導向它。
那麼,有沒有辦法像SKStoreProductViewController一樣在iOS上打開Google Play產品頁面?
或者有一種方法可以創建我們自己的「Google Play產品頁面」並通過官方API獲取相關信息?
謝謝。
http://developer.android.com/google/play/billing/billing_overview.html應用內結算 – 2013-02-19 13:31:26