个人作业冲刺记录一
发布日期:2021.4.17
今天完成了用户的登陆阶段:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="用户登录"
android:textSize="30dp"
android:textStyle="bold"
android:gravity="center"
>
</TextView>
<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="姓名:"
></TextView>
<EditText
android:id="@+id/regists_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"></EditText>
<TextView
android:id="@+id/text3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="学号:"
></TextView>
<EditText
android:id="@+id/regists_pass"
android:layout_width="match_parent"
android:inputType="textPassword"
android:layout_height="wrap_content"></EditText>
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:onClick="onclick"
android:text="登录"></Button>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onclick"
android:text="注册"></Button>
<!--
<Button
android:id="@+id/btn3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onclick"
android:text="手机号登录"
></Button>
-->
</LinearLayout>
浙公网安备 33010602011771号