以编程方式打开我的应用程序的谷歌播放服务页面[重复]
Posted
技术标签:
【中文标题】以编程方式打开我的应用程序的谷歌播放服务页面[重复]【英文标题】:Programatically open to the google play services page for my app [duplicate] 【发布时间】:2014-04-05 21:14:03 【问题描述】:如果我在 android 上启动“玩游戏”图标并转到“我的游戏”,我可以点击我的应用程序进入有关它的页面。当用户单击我的应用程序中的按钮时,是否可以以编程方式转到此处?
注意:我不想在 Google Play 商店中打开应用!这是我想要的 Game Play Services 中的应用页面!
【问题讨论】:
不,我不想打开 google play STORE,我想打开 google GAME PLAY SERVICE 页面,请在降级前阅读问题startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=com.google.android.gms")));
【参考方案1】:
试试这个http://developer.android.com/distribute/googleplay/promote/linking.html
或
How to open the Google Play Store directly from my Android application?
或
open link of google play store in mobile version android
来自第二个链接:
final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object
try
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
catch (android.content.ActivityNotFoundException anfe)
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
【讨论】:
似乎是第二个链接中接受的答案的复制粘贴 这不是我的功劳。我链接到该答案并从那里复制了最重要的内容,以便更容易找到重要的内容。无论如何,我编辑了我的答案,注意它来自那里。 这是商店,不是播放服务【参考方案2】:如果您想从 Android 应用链接到您的产品,请创建一个打开 Google Play URL 的 Intent,如下例所示。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
更多信息请通过link
【讨论】:
这是游戏商店,不是游戏服务以上是关于以编程方式打开我的应用程序的谷歌播放服务页面[重复]的主要内容,如果未能解决你的问题,请参考以下文章