创建打开Android应用程序的html链接

时间:2016-02-11 16:50:54

标签: android html

我想在我的移动网站上创建一个简单的html href链接,它将打开像waze,whatsapp或viber这样的Android应用程序。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

对于启动Vkontakte应用程序和我使用的打开配置文件页面:

if (isVKAppInstalled(context)) {
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("vkontakte://profile/%d", vkUserId)));
            context.startActivity(intent);
        }

检查应用程序安装的方法:

public static boolean isVKAppInstalled(Context context) {
        PackageManager pm = context.getPackageManager();
        boolean isInstalled;
        try {
            pm.getPackageInfo(VK_PACKAGE_URI, PackageManager.GET_ACTIVITIES);
            isInstalled = true;
        } catch (PackageManager.NameNotFoundException e) {
            isInstalled = false;
        }
        return isInstalled;
    }