美文网首页
APP 调起 qq聊天界面的代码

APP 调起 qq聊天界面的代码

作者: 吴彦辉 | 来源:发表于2017-03-03 11:46 被阅读0次
    /**
         * @param qq qq号码
         */
        public void openQQ(String qq) {
            try {
                String url = "mqqwpa://im/chat?chat_type=wpa&uin=" + qq;
                startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
            } catch (Exception e) {
                Toast.makeText(this, "尚未安装QQ", Toast.LENGTH_SHORT).show();
            }
        }
    

    相关文章

      网友评论

          本文标题:APP 调起 qq聊天界面的代码

          本文链接:https://www.haomeiwen.com/subject/pmwlgttx.html