本文主要是介绍安卓中QQ登陆源代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安卓中QQ登陆
一种是流的方式,一种是声明一个共享参数sharedpreference
第一种方法:
第一步:将QQ头像粘贴到drawable—hdpi中
第二步:在xml布局文件中编辑页面布局(ImageView,EditText,CheckBox,Button)
<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="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
tools:context=".MainActivity" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/qq"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入QQ号码"
android:id="@+id/et_qqnumber"/>
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入密码
这篇关于安卓中QQ登陆源代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!