在这个网址里下载 Android_SDK_V3.3.0
http://wiki.open.qq.com/wiki/mobile/SDK%E4%B8%8B%E8%BD%BD
首先将Android_SDK_V3.3.0.lite下面的open_sdk_r5886_lite.jar粘贴到项目的libs下面,
再给项目添加 Library dependency,选择open_sdk_r5886_lite.jar添加依赖
参考网址: http://blog.youkuaiyun.com/sandyran/article/details/53319846
清单文件中注册
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.lianxiday07_disanfang">
- <!-- QQ登录授权所需权限 -->
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <application
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:supportsRtl="true"
- android:theme="@style/AppTheme">
- <activity android:name=".MainActivity">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- 注册SDKActivity -->
- <activity
- android:name="com.tencent.tauth.AuthActivity"
- android:launchMode="singleTask"
- android:noHistory="true" >
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="tencent1105602574" /> <!-- 开放平台获取的APPID -->
- </intent-filter>
- </activity>
- <activity android:name="com.tencent.connect.common.AssistActivity"
- android:screenOrientation="portrait"/>
- </application>
- </manifest>
activity_main的布局
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/activity_main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <Button
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="点击QQ登录"
- android:onClick="buttonLogin"
- android:layout_centerInParent="true"
- android:textSize="16sp"
- android:textColor="#f4736e"/>
- </RelativeLayout>
MainActivity的代码
授权成功后跳转到的个人中心页面的布局[html] view plain copy
- public class MainActivity extends AppCompatActivity {
- private static final String TAG = "MainActivity";
- private static final String APP_ID = "1105602574";//官方获取的APPID
- private Tencent mTencent;
- private BaseUiListener mIUiListener;
- private UserInfo mUserInfo;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- //传入参数APPID和全局Context上下文
- mTencent = Tencent.createInstance(APP_ID,MainActivity.this.getApplicationContext());
- }
- public void buttonLogin(View v){
- /**通过这句代码,SDK实现了QQ的登录,这个方法有三个参数,第一个参数是context上下文,第二个参数SCOPO 是一个String类型的字符串,表示一些权限
- 官方文档中的说明:应用需要获得哪些API的权限,由“,”分隔。例如:SCOPE = “get_user_info,add_t”;所有权限用“all”
- 第三个参数,是一个事件监听器,IUiListener接口的实例,这里用的是该接口的实现类 */
- mIUiListener = new BaseUiListener();
- //all表示获取所有权限
- mTencent.login(MainActivity.this,"all", mIUiListener);
- }
- /**
- * 自定义监听器实现IUiListener接口后,需要实现的3个方法
- * onComplete完成 onError错误 onCancel取消
- */
- private class BaseUiListener implements IUiListener {
- @Override
- public void onComplete(Object response) {
- Toast.makeText(MainActivity.this, "授权成功", Toast.LENGTH_SHORT).show();
- Log.e(TAG, "response:" + response);
- JSONObject obj = (JSONObject) response;
- try {
- String openID = obj.getString("openid");
- String accessToken = obj.getString("access_token");
- String expires = obj.getString("expires_in");
- mTencent.setOpenId(openID);
- mTencent.setAccessToken(accessToken,expires);
- QQToken qqToken = mTencent.getQQToken();
- mUserInfo = new UserInfo(getApplicationContext(),qqToken);
- mUserInfo.getUserInfo(new IUiListener() {
- @Override
- public void onComplete(Object response) {
- Log.e(TAG,"登录成功"+response.toString());
- }
- @Override
- public void onError(UiError uiError) {
- Log.e(TAG,"登录失败"+uiError.toString());
- }
- @Override
- public void onCancel() {
- Log.e(TAG,"登录取消");
- }
- });
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- @Override
- public void onError(UiError uiError) {
- Toast.makeText(MainActivity.this, "授权失败", Toast.LENGTH_SHORT).show();
- }
- @Override
- public void onCancel() {
- Toast.makeText(MainActivity.this, "授权取消", Toast.LENGTH_SHORT).show();
- }
- }
- /**
- * 在调用Login的Activity或者Fragment中重写onActivityResult方法
- * @param requestCode
- * @param resultCode
- * @param data
- */
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- if(requestCode == Constants.REQUEST_LOGIN){
- Tencent.onActivityResultData(requestCode,resultCode,data,mIUiListener);
- }
- super.onActivityResult(requestCode, resultCode, data);
- }
- }
[html] view plain copy
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:gravity="center"
- >
- <TextView
- android:textSize="23sp"
- android:padding="20dp"
- android:text="个人信息"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:background="#000000"
- android:layout_width="match_parent"
- android:layout_height="1dp" />
- <LinearLayout
- android:padding="10dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:textSize="23sp"
- android:text="头像"
- />
- <ImageView
- android:layout_marginLeft="200dp"
- android:src="@drawable/_tou"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="80dp" />
- </LinearLayout>
- <TextView
- android:background="#000000"
- android:layout_width="match_parent"
- android:layout_height="1dp" />
- <LinearLayout
- android:paddingLeft="10dp"
- android:paddingTop="20dp"
- android:paddingBottom="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:textSize="23sp"
- android:text="用户名"
- />
- <TextView
- android:layout_marginLeft="170dp"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:textSize="23sp"
- android:text="username"
- />
- </LinearLayout>
- <TextView
- android:background="#000000"
- android:layout_width="match_parent"
- android:layout_height="1dp" />
- <LinearLayout
- android:paddingLeft="10dp"
- android:paddingTop="20dp"
- android:paddingBottom="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:textSize="23sp"
- android:text="性别"
- />
- <TextView
- android:layout_marginLeft="270dp"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:textSize="23sp"
- android:text="女"
- />
- </LinearLayout>
- <TextView
- android:background="#000000"
- android:layout_width="match_parent"
- android:layout_height="1dp" />
- <Button
- android:textSize="23sp"
- android:layout_marginTop="150dp"
- android:text="退出登录"
- android:layout_width="200dp"
- android:layout_height="60dp" />
- </LinearLayout>