当前位置:   article > 正文

安卓AS:简简单单就实现了一个qq登录界面_as登录界面

as登录界面

注意:需要一点点的java基础,对布局属性和控件属性有一定的了解

可以看看这两篇文章:

https://blog.csdn.net/qq_42023080/article/details/105622818   各个布局主要属性

https://blog.csdn.net/qq_42023080/article/details/105627681  各个控件的常用属性

目录

运行效果:

完整代码

主布局文件代码

 用到的图片

MainActivity的代码

讲解部分

主布局代码讲解

总览主布局

一、整体

二、头像部分

三、账号及输入部分

四、密码及其输入部分

五、登录按钮部分

六、显示输入信息部分

MainActivity部分


运行效果:

完整代码

首先奉上全部代码,之后再详细讲解。

主布局文件代码

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#E6E6E6"
  8. android:orientation="vertical"
  9. tools:context=".MainActivity">
  10. <ImageView
  11. android:id="@+id/iv"
  12. android:layout_width="70dp"
  13. android:layout_height="70dp"
  14. android:background="@drawable/tou1"
  15. android:layout_centerHorizontal="true"
  16. android:layout_marginTop="50dp"/>
  17. <LinearLayout
  18. android:id="@+id/ll_number"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:layout_marginLeft="10dp"
  22. android:layout_marginRight="10dp"
  23. android:layout_centerHorizontal="true"
  24. android:layout_below="@+id/iv"
  25. android:layout_marginTop="20dp"
  26. android:layout_marginBottom="5dp"
  27. android:background="#ffffff"
  28. android:orientation="horizontal">
  29. <TextView
  30. android:id="@+id/tv_number"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:text="账号:"
  34. android:textSize="20sp"
  35. android:textColor="#000"
  36. android:padding="10dp"/>
  37. <EditText
  38. android:id="@+id/et_number"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginLeft="5dp"
  42. android:background="@null"
  43. android:padding="10dp"/>
  44. </LinearLayout>
  45. <LinearLayout
  46. android:id="@+id/ll_password"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_centerHorizontal="true"
  50. android:background="#ffffff"
  51. android:layout_marginLeft="10dp"
  52. android:layout_marginRight="10dp"
  53. android:layout_below="@+id/ll_number"
  54. android:orientation="horizontal" >
  55. <TextView
  56. android:id="@+id/tv_password"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:text="密码:"
  60. android:textSize="20dp"
  61. android:textColor="#000"
  62. android:padding="10dp"/>
  63. <EditText
  64. android:id="@+id/et_password"
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_marginLeft="5dp"
  68. android:background="@null"
  69. android:inputType="textPassword"
  70. android:padding="10dp"/>
  71. </LinearLayout>
  72. <Button
  73. android:id="@+id/bt"
  74. android:layout_width="match_parent"
  75. android:layout_height="wrap_content"
  76. android:layout_centerHorizontal="true"
  77. android:layout_marginRight="10dp"
  78. android:layout_marginLeft="10dp"
  79. android:text="登录"
  80. android:background="#3C8DC4"
  81. android:textColor="#ffffff"
  82. android:textSize="20sp"
  83. android:layout_below="@+id/ll_password"
  84. android:layout_marginTop="50dp"/>
  85. <TextView
  86. android:id="@+id/tv"
  87. android:layout_width="wrap_content"
  88. android:layout_height="wrap_content"
  89. android:layout_marginTop="25dp"
  90. android:textColor="#000"
  91. android:textSize="20sp"
  92. android:text=""
  93. android:layout_below="@+id/bt"
  94. android:layout_alignLeft="@+id/bt"
  95. android:layout_alignStart="@+id/bt"/>
  96. </RelativeLayout>

所在位置

 

 用到的图片

在网上搜的,来源不知。很帅的一个小哥哥,然后就拿来做事例啦。哈哈哈,打住。

MainActivity的代码

  1. package dell.example.qqlogin;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Button;
  6. import android.widget.EditText;
  7. import android.widget.TextView;
  8. public class MainActivity extends AppCompatActivity {
  9. private TextView textView;
  10. private EditText et_number;
  11. private EditText et_password;
  12. private Button bt;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_main);
  17. textView = (TextView) findViewById(R.id.tv);
  18. et_number = (EditText) findViewById(R.id.et_number);
  19. et_password = (EditText) findViewById(R.id.et_password);
  20. bt = (Button) findViewById(R.id.bt);
  21. bt.setOnClickListener(new View.OnClickListener() {
  22. @Override
  23. public void onClick(View v) {
  24. textView.setText("账号:"+et_number.getText().toString()+"密码:"+et_password.getText().toString());
  25. }
  26. });
  27. }
  28. }

所在位置

 

讲解部分

主布局代码讲解

总览主布局

通过运行效果图可以知道发现,这里可分成这几部分:头像部分、账号及输入部分、密码及其输入部分、登录按钮部分和显示输入信息部分。

从其中可以发现,我们需要用到的控件有:显示图片的ImageView、显示文字的TextView、可以输入内容的EditText、按钮控件Button和最下面用来显示输入信息的TextView(和上面的TextView相同,只是用途不一)。

由于显示文字 "账号:" 的TextView和其右边的控件与显示文字"密码:"的TextView和其右面的控件在同一水平线上,为了方便设计,便对这两组控件使用LinearLayout约束。具体看结构蓝图:

一、整体

 看图说话,

1、这里将原来的主布局文件的布局格式,改为相对布局,也就是修改为图中的1处。

2、除开设置宽高为match_parent(遍布全部父界面),背景颜色background设置为灰色阴影#E6E6E6,最重要的就是设置其排列方式,

android:orientation="vertical"     意思是控件垂直排序,从上到下依次放置下来。

二、头像部分

 看图吧,太简单了。

三、账号及输入部分

 三和四都用到了线性布局,这里先讲下线性布局的属性。

看图看图,贼简单。

id不用说了,必须的

布局的宽高设置。宽为什么是match_parent,高为什么是wrap_content?这个问题很简单,我要让其实现运行效果图那样的效果,就得让宽占满屏幕,高根据设置的文字来确定,这样后面好修整。对了,match_parent意思让该属性与父控件一样,wrap_content意思是让该属性由内容确定。

左右边距设置为10dp。就是离两边的距离是10dp,为了效果,不解释。

设置控件水平居中

设置该控件的在显示图片的、id为iv控件的下方

上外边距为20dp。与iv的上下距离

下外边距为5dp,看图

背景为白色

最后一个属性,线性布局必须设置的属性,默认为水平排列。这里是水平摆放。

 

 看图说话,各个属性作用

TextView

id、宽和高我就不说了,必须的,每个控件必须设置的

显示的文字内容为"账号:"

显示的字体大小为20sp

显示的字体颜色为#000

内边距为10dp

 

EditText

这里没啥说的,上面都说过了

主要一个,设置背景为@null,作用是去除该控件的下划线

 

四、密码及其输入部分

 三和四很像,绝大部分都相同,属性都很简单,也都说过。

除开图中红箭头处,设置输入的内容为文本密码格式

 

五、登录按钮部分

略。略略略。如果到这里还看不懂,先看看各个属性吧,推荐这两篇文章:

https://blog.csdn.net/qq_42023080/article/details/105622818   各个布局主要属性

https://blog.csdn.net/qq_42023080/article/details/105627681  各个控件的常用属性

六、显示输入信息部分

 看图就好

 

MainActivity部分

本文完

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/547177
推荐阅读
相关标签
  

闽ICP备14008679号