Android實(shí)現(xiàn)QQ登錄功能
QQ登錄是一個非常簡單的一個第三方應(yīng)用,現(xiàn)在,我們就來實(shí)現(xiàn)一個QQ登錄
首先下載兩個jar包 這里上傳不了jar包,所以可以到我的github中下載工程中l(wèi)ibs中的兩個jar包
網(wǎng)址:https://github.com/chengzexiang/qqlogin
打代碼前,先把這些東西寫上:
private static final String TAG = "MainActivity"; private static final String APP_ID = "1105602574";//官方獲取的APPID private Tencent mTencent; private BaseUiListener mIUiListener; private UserInfo mUserInfo;
在AndroidManifest.xml中加入權(quán)限
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- 注冊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:theme="@android:style/Theme.Translucent.NoTitleBar" android:screenOrientation="portrait"/>
Xml布局中的
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.bwei.czx.czx0914qq.MainActivity"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="登錄" android:id="@+id/login"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/name"/> <ImageView android:layout_width="100dp" android:layout_height="80dp" android:id="@+id/img"/> </LinearLayout>
下面開始MainActivity中的代碼
package com.bwei.czx.czx0914qq; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.nostra13.universalimageloader.core.ImageLoader; import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; import com.tencent.connect.UserInfo; import com.tencent.connect.auth.QQToken; import com.tencent.connect.common.Constants; import com.tencent.tauth.IUiListener; import com.tencent.tauth.Tencent; import com.tencent.tauth.UiError; import org.json.JSONException; import org.json.JSONObject; 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; private Button login; private TextView name; private ImageView img; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //傳入?yún)?shù)APPID和全局Context上下文 mTencent = Tencent.createInstance(APP_ID, MainActivity.this.getApplicationContext()); initView(); login.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { mIUiListener = new BaseUiListener(); //all表示獲取所有權(quán)限 mTencent.login(MainActivity.this,"all", mIUiListener); mUserInfo = new UserInfo(MainActivity.this, mTencent.getQQToken()); //獲取用戶信息 mUserInfo.getUserInfo(mIUiListener); } }); } private void initView() { login = (Button) findViewById(R.id.login); name = (TextView) findViewById(R.id.name); img = (ImageView) findViewById(R.id.img); } /** * 自定義監(jiān)聽器實(shí)現(xiàn)IUiListener接口后,需要實(shí)現(xiàn)的3個方法 * onComplete完成 onError錯誤 onCancel取消 */ private class BaseUiListener implements IUiListener { @Override public void onComplete(Object response) { Toast.makeText(MainActivity.this, "授權(quán)成功", 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()); if(response == null){ return; } try { JSONObject jo = (JSONObject) response; Toast.makeText(MainActivity.this, "登錄成功", Toast.LENGTH_LONG).show(); String nickName = jo.getString("nickname"); String figureurl_1= jo.getString("figureurl_1"); name.setText(nickName); ImageLoaderConfiguration configuration = new ImageLoaderConfiguration.Builder(MainActivity.this).build(); ImageLoader.getInstance().init(configuration); ImageLoader.getInstance().displayImage(figureurl_1,img); } catch (Exception e) { // TODO: handle exception } } @Override public void onError(UiError uiError) { Log.e(TAG,"登錄失敗"+uiError.toString()); } @Override public void onCancel() { Log.e(TAG,"登錄取消"); } }); } catch (JSONException e) { e.printStackTrace(); } } @Override public void onError(UiError uiError) { Toast.makeText(MainActivity.this, "授權(quán)失敗", Toast.LENGTH_SHORT).show(); } @Override public void onCancel() { Toast.makeText(MainActivity.this, "授權(quán)取消", Toast.LENGTH_SHORT).show(); } } @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); } }
下面為顯示效果
qq登錄完成!
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android?Flutter實(shí)現(xiàn)任意拖動的控件
使用flutter開發(fā)是需要控件能拖動,比如畫板中的元素,或者工具條等,所以本文為大家準(zhǔn)備了Flutter實(shí)現(xiàn)任意拖動控件的示例代碼,希望對大家有所幫助2023-07-07老生常談ProgressBar、ProgessDialog的用法
下面小編就為大家?guī)硪黄仙U凱rogressBar、ProgessDialog的用法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-07-07Android 中動態(tài)加載.jar的實(shí)現(xiàn)步驟
本文介紹動態(tài)加載 .jar的實(shí)現(xiàn)步驟,這將對你的android開發(fā)很有幫助,剛興趣的朋友可以了解下哦2013-01-01Android實(shí)現(xiàn)圖片在屏幕內(nèi)縮放和移動效果
這篇文章主要為大家詳細(xì)介紹了Android控制圖片在屏幕內(nèi)縮放和移動效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-02-02Android之仿美團(tuán)加載數(shù)據(jù)幀動畫
本文主要介紹了Android仿美團(tuán)加載數(shù)據(jù)幀動畫的實(shí)例方法。具有很好的參考價值。下面跟著小編一起來看下吧2017-04-04解決Android Studio xml 格式化不自動換行的問題
這篇文章主要介紹了解決Android Studio xml 格式化不自動換行的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-03-03Android自定義控件RatingBar調(diào)整字體大小
這篇文章主要為大家詳細(xì)介紹了Android自定義控件RatingBar調(diào)整字體大小的相關(guān)資料,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-03-03Android修改源碼解決Alertdialog觸摸對話框邊緣消失的問題
在開發(fā)的時候遇到一個問題,就是一觸摸對話框邊緣外部,對話框會自動消失。這個問題很糾結(jié)啊,查找了一下發(fā)現(xiàn)從Android 4.0開始,AlertDialog有了變化,就是在觸摸對話框邊緣外部,對話框會自動消失,查了源碼,找到解決辦法如下2013-11-11基于SceneForm實(shí)現(xiàn)子彈射擊(繪制子彈運(yùn)行軌跡)
這篇文章主要為大家詳細(xì)介紹了基于SceneForm實(shí)現(xiàn)子彈射擊,繪制子彈運(yùn)行軌跡,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-11-11