如果我启动Android上的'Play Games'图标并转到我的游戏,我可以点击我的应用程序进入相关页面。当用户点击我的应用程序中的按钮时,是否可以以编程方式进入此处?
注意:我不想在Google Play商店中打开该应用!,这是我想要的游戏播放服务中的应用页面!
答案 0 :(得分:3)
试试这个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)));
}
答案 1 :(得分:-1)
如果您想从Android应用链接到您的产品,请创建一个打开Google Play网址的Intent,如下例所示。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
了解更多信息请访问link