ChatGPT解决这个技术问题 Extra ChatGPT

在手机版android中打开google play store的链接

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

Uri uri = Uri.parse("url");
Intent intent = new Intent (Intent.ACTION_VIEW, uri); 
startActivity(intent);

此代码打开谷歌播放商店的浏览器版本。

当尝试从我的手机打开时,手机会提示我是否要使用浏览器或 google play,如果我选择第二个,它会打开 google play store 的移动版本。

你能告诉我这怎么会同时发生?我的意思是不问我,而是直接打开手机版的google play,我直接从手机打开它时看到的那个。

我希望倒数第二段对我来说是正确的。使用此处找到的 http 链接:developer.android.com/distribute/googleplay/promote/… 不会提示用户选择应用程序或浏览器。它总是假定浏览器。不幸的是,我也不能使用 market:// 协议。还有其他人看到这种行为吗?

C
Community

您需要使用指定的 market 协议:

final String appPackageName = "com.example"; // Can also use getPackageName(), as below
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));

请记住,这将在任何未安装 Market 的设备(例如模拟器)上崩溃。因此,我建议如下:

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)));
}

使用 Context 中的 getPackageName() 或其子类以保持一致性(感谢 @cprcrack!)。您可以在此处找到有关市场意图的更多信息:link


在浏览器中打开以下内容不会打开 Google Play:market://details?id=pandora
ID 是包名称,而不是应用名称。试试 market://details?id=com.PandoraTV(假设 this 是您想要的应用程序)。
这个答案是关于使用您自己的应用程序中的 market:// 前缀,而不是通过浏览器从网站中使用。我可以证明它的功能(在 2.3、3.x、4.0、4.1 和4.2),它适用于普通浏览器、Chrome Beta 25 和 Chrome 18。
是的,Chrome 是一个应用程序,但这需要其制造商 [Google] 使用此代码,而不是 [您] 制作网站的人。就目前而言,此代码旨在帮助专门从其应用程序构建链接的人。
您可以使用 getPackageName() 自动检索应用程序 ID。
C
Chirag Ghori

下面的代码可以帮助您在移动版本中显示 google play sore 的应用程序链接。

申请链接:

Uri uri = Uri.parse("market://details?id=" + mContext.getPackageName());
Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);

  try {
        startActivity(myAppLinkToMarket);

      } catch (ActivityNotFoundException e) {

        //the device hasn't installed Google Play
        Toast.makeText(Setting.this, "You don't have Google Play installed", Toast.LENGTH_LONG).show();
              }

对于开发者链接:

Uri uri = Uri.parse("market://search?q=pub:" + YourDeveloperName);
Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);

            try {

                startActivity(myAppLinkToMarket);

            } catch (ActivityNotFoundException e) {

                //the device hasn't installed Google Play
                Toast.makeText(Settings.this, "You don't have Google Play installed", Toast.LENGTH_LONG).show();

            } 

D
Dmitriy Tarasov

您可以使用 Android Intents 库在 Google Play 中打开您的应用程序页面,如下所示:

Intent intent = IntentUtils.openPlayStore(getApplicationContext());
startActivity(intent);

请注意,不鼓励使用 link-only answers,因此答案应该是搜索解决方案的终点(与另一个参考文献的中途停留相比,它往往会随着时间的推移变得陈旧)。请考虑在此处添加独立的概要,并保留链接作为参考。
包含一个免责声明会很有帮助,即这是您的图书馆,并且the function is implemented与接受的答案几乎相同。
P
Paolo Rovelli

您可以检查是否安装了 Google Play Store 应用,如果是这样,您可以使用“market://”协议。

final String my_package_name = "........."  // <- HERE YOUR PACKAGE NAME!!
String url = "";

try {
    //Check whether Google Play store is installed or not:
    this.getPackageManager().getPackageInfo("com.android.vending", 0);

    url = "market://details?id=" + my_package_name;
} catch ( final Exception e ) {
    url = "https://play.google.com/store/apps/details?id=" + my_package_name;
}


//Open the app page in Google Play store:
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(intent);

佚名

在 Google Play 上打开应用页面:

Intent intent = new Intent(Intent.ACTION_VIEW,
                Uri.parse("market://details?id=" + context.getPackageName()));
startActivity(intent);