我準備了一個精簡版的應用程序。如果用戶點擊「購買選項」,我想讓用戶訪問Google Play中的付費版本。請您指出實現這一目標的過程/步驟。Google play中的應用程序鏈接
0
A
回答
0
只需使用意圖並開始活動,如this示例。
0
你包的名字是在Play商店應用程序的名稱,所以手動您可以創建這樣
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=**Your Paid's App Package Name**"));
startActivity(intent);
的鏈接添加到您的按鈕的事件。
0
這是我要做的事:
final String appName = "com.example.yourapp"; //name of your package here
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appName)));
讓我知道,如果你有任何問題
相關問題
- 1. 從Google Play商店鏈接的應用程序下載
- 2. 「評價這個應用程序」google play store鏈接在離子應用程序
- 3. Google Play測試鏈接重定向到應用程序生產
- 4. 在上傳之前從Google Play獲取應用程序鏈接
- 5. 從Phonegap鏈接到Google Play應用程序:不支持協議
- 6. 將Chrome打包應用程序鏈接到Google Play遊戲
- 7. Google Play中的應用程序圖標
- 8. 亞馬遜應用在Google Play應用中的鏈接
- 9. Google Play中付費應用程序的深層鏈接促銷代碼
- 10. Google Play中未顯示應用程序
- 11. 從Google Play中分離應用程序
- 12. Google Play上的更新應用程序
- 13. 直接鏈接到新的Google Apps Marketplace中的應用程序
- 14. 如何在Play應用程序中添加Play商店的應用程序下載鏈接
- 15. href標記在瀏覽器中打開google play store鏈接而不是默認的Play商店應用程序?
- 16. Google Play,應用程序圖標錯誤
- 17. Google Play應用程序兼容性
- 18. 將應用程序提交到Google Play
- 19. 在Google Play上隱藏應用程序
- 20. 從瀏覽器鏈接到本機Google Play商店應用程序
- 21. Google Play應用程序簽約Ionic 2應用程序
- 22. Android Google Play應用程序與多個應用程序簽約
- 23. Android:直接從Google Play測試應用程序
- 24. 將鏈接(url)鏈接到Google應用程序腳本中的日曆事件
- 25. Google Play - 下載未發佈應用的鏈接?
- 26. Google不抓取AngularJS應用程序中的鏈接
- 27. App Store/Google Play上的推薦鏈接
- 28. 將Proguard應用到Google Play上的現有應用程序
- 29. Google Play商店中的多個版本的應用程序
- 30. 應用程序在Google Play中不可見,甚至在應用程序的直接鏈接中也不起作用
關於意圖,我需要在manifest文件 – iappmaker
互聯網permissiens添加的東西,這就是所有 –
甚至不需要互聯網許可。您並未直接使用互聯網,而是將其委託給Google Play。 – Geobits