Ⅰ android 唤起QQ应用的正确方式
Intent intent =new Intent();
ComponentName cmp =new ComponentName("com.tencent.mobileqq", "com.tencent.mobileqq.activity.SplashActivity");
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setComponent(cmp);
startActivity(intent);
com.tencent.qq.SplashActivity
com.tencent.mobileqq.activity.HomeActivity
正确包名:com.tencent.mobileqq.activity.SplashActivity
PackageManager packageManager =this.getPackageManager();
Intent intent= packageManager.getLaunchIntentForPackage("com.tencent.mobileqq");
startActivity(intent);
Ⅱ Android开发的进来,谁能传给我1份android接入qq登录的代码
首先你的app要提交审核,得到app key,配置你的回调地址。通过http请求接口https://openmobile.qq.com/oauth2.0/m_authorize
拼装参数,得到如下地址:
https://openmobile.qq.com/oauth2.0/m_authorize?client_id=xxx&response_type=token&redirect_uri=xxx&scope=all
再通过webview load该地址就能打开第三方登录的授权页面。
Ⅲ 怎样在android手机上安卓qq等应用软件
将android 手机连接至可以上网的电脑,电脑上下载安装一个豌豆荚软件,在里面的软件管理功能里会提示你下载安装的,很简单。