相关疑难解决方法(0)

如何直接从我的Android应用程序打开Goog​​le Play商店?

我已使用以下代码打开Goog​​le Play商店

Intent i = new Intent(android.content.Intent.ACTION_VIEW);
i.setData(Uri.parse("https://play.google.com/store/apps/details?id=my packagename "));
startActivity(i);.
Run Code Online (Sandbox Code Playgroud)

但它显示了一个完整的动作视图,以选择选项(浏览器/播放商店).我需要直接在Play商店中打开应用程序.

android android-intent google-play

534
推荐指数
17
解决办法
70万
查看次数

在移动版android中打开google play商店的链接

我在我最新的应用程序中有我的其他应用程序的链接,我以这种方式打开它们.

Uri uri = Uri.parse("url");
Intent intent = new Intent (Intent.ACTION_VIEW, uri); 
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

此代码会打开Goog​​le Play商店的浏览器版本.

当我尝试从手机打开时,手机会提示我是否要使用浏览器或谷歌播放,如果我选择第二个,则会打开谷歌播放商店的移动版本.

你能告诉我这怎么可能立刻发生?我的意思是不要问我,而是直接打开谷歌播放的移动版本,我看到的那个直接从手机打开它.

android google-play

88
推荐指数
2
解决办法
12万
查看次数

标签 统计

android ×2

google-play ×2

android-intent ×1