Andorid检测支付宝客户端是否安装

主要采用intent意图匹配间接实现检测支付宝客户端是否安装,代码如下:

 public static boolean checkAliPayInstalled(Context context) {

        Uri uri = Uri.parse("alipays://platformapi/startApp");
        Intent intent = new Intent(Intent.ACTION_VIEW, uri);
        ComponentName componentName = intent.resolveActivity(context.getPackageManager());
        return componentName != null;
    }
目前测试有效


转自:http://blog.csdn.net/u012045061/article/details/49638737

你可能感兴趣的:(组件,系统内容)