如何使用深层链接完全打开Play商店?

时间:2019-07-18 17:40:47

标签: android google-play deep-linking

某些用户已安装了默认情况下处理Google Play链接的第三方应用商店。 我的应用程序仅在Play上发布。

通常我会这样做:

intent://details?id=X&url=Y&referrer=Z#Intent;scheme=market;action=android.intent.action.VIEW;package=com.android.vending;end";

如果未安装该应用,是否可以专门打开Goog​​le Play?

1 个答案:

答案 0 :(得分:1)

使用以下参考代码(替换为您的应用程序网址)

    protected void startPlayStoreActivity() {
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse("market://details?id=com.hardik.passkey"));
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            startActivity(intent); 
    }