如何检查Android上是否安装了QQ(腾讯)应用程序?

时间:2014-10-29 18:23:09

标签: android

我想检测是否在Android上安装了QQ(腾讯),还是没有以编程方式安装。

以下是我正在使用的代码:

boolean installed_qq = appInstalledOrNot(“com.qq.tencent”);

        if(installed_qq) {

            Intent intent = new Intent(SplashActivity.this, Main1Activity.class);
            startActivity(intent);
            finish();

        } else {
            Intent intent = new Intent(SplashActivity.this, Main2Activity.class);
            startActivity(intent);
            finish();               
        }

“com.qq.tencent”不正确。

我想知道正确的QQ应用程序。

请帮帮我。

2 个答案:

答案 0 :(得分:0)

这是你想要的吗? https://stackoverflow.com/a/18752247/3238938

njzk2的评论也是正确的,包名称是Google Play商店网址的查询字符串。

答案 1 :(得分:0)

如果您正在查看QQ的移动版本,腾讯QQ的URI应为 com.tencent.mobileqq

https://play.google.com/store/apps/details?id=com.tencent.mobileqq&hl=en是Google Play中QQ的网址。

从链接中,您可以注意到 com.tencent.mobileqq 是id参数的值。