中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android Studio實現第三方QQ登錄操作代碼

發布時間:2020-10-15 04:25:35 來源:腳本之家 閱讀:178 作者:qingxuan521721 欄目:移動開發

來看看效果圖吧

Android Studio實現第三方QQ登錄操作代碼    Android Studio實現第三方QQ登錄操作代碼

 
                                                Android Studio實現第三方QQ登錄操作代碼

http://wiki.open.qq.com/wiki/mobile/SDK%E4%B8%8B%E8%BD%BD 下載SDKJar包 接下來就可以

實現QQ登錄了,

新建一個項目工程 ,然后把我們剛才下載的SDK解壓將jar文件夾中的jar包拷貝到我們的項目libs中

Android Studio實現第三方QQ登錄操作代碼

  導入一個下面架包就可以

Android Studio實現第三方QQ登錄操作代碼

項目結構如下

Android Studio實現第三方QQ登錄操作代碼

打開我們的清單文件Androidmanifest 在里面加入權限和注冊Activity 如下

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.tangxiaoying.qq2">
 <!-- 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:roundIcon="@mipmap/ic_launcher_round"
  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:theme="@android:style/Theme.Translucent.NoTitleBar"
   android:screenOrientation="portrait"/>
 </application>
</manifest>

布局文件activity_main 就一個Button按鈕

<?xml version="1.0" encoding="utf-8"?>
<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中的代碼了

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.Toast;
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;
 @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 (JSONException 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);
 }
}

總結

以上所述是小編給大家介紹的Android Studio實現第三方QQ登錄操作代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旌德县| 商城县| 荃湾区| 双峰县| 红桥区| 五常市| 古交市| 临泉县| 兴安县| 陆河县| 临海市| 安多县| 怀宁县| 青龙| 奎屯市| 湖南省| 塘沽区| 临海市| 永登县| 鱼台县| 寻甸| 紫金县| 城口县| 稻城县| 汉中市| 江川县| 襄垣县| 杭州市| 额尔古纳市| 江西省| 古田县| 巢湖市| 乌恰县| 洱源县| 广饶县| 万载县| 泗阳县| 邻水| 黎川县| 宁波市| 张家界市|