如何根据APP可用性在移动网站上显示促销横幅?

时间:2016-07-20 13:42:35

标签: php mobile web

我需要根据APP的可用性在移动网站上显示不同的横幅。

那么如何才能从移动网站上安装或不安装特定的APP。

任何人都建议我/指导我。移动网站由PHP构建。

提前致谢。

1 个答案:

答案 0 :(得分:0)

Use below method to check application is install or not.

public static boolean isAppInstalled(Context context, String packageName) {
    try {
        context.getPackageManager().getApplicationInfo(packageName, 0);
        return true;
    }
    catch (PackageManager.NameNotFoundException e) {
        return false;
    }
}

then check,

if(isAppInstalled(context,package)==true){

     // here display different banner.

}else {

}