parent
86eb7d3495
commit
de01a2d124
@ -1,140 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#c8c7c5"
|
||||
tools:context=".MainActivity">
|
||||
|
||||
<!--
|
||||
思路
|
||||
1.登录界面需要输入账号、密码,那么我们我要两个输入文本框。
|
||||
2.需要点击一个登录,那么需要一个登录按钮,以及监听按钮的登陆事件。
|
||||
3.作为一个简易的登录界面,我们并不加入数据库,添加一个账号密码识别认证即可。-->
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="-25dp"
|
||||
tools:layout_editor_absoluteY="291dp">
|
||||
|
||||
<!--android:layout_marginLeft 这个作用是设置和左边的间距
|
||||
android:layout_marginTop 这个作用是设置和顶部的间距
|
||||
android:ems 这个作用是限制输入长度
|
||||
android:hint 这个作用是设置输入文本框内的提示内容
|
||||
android:inputType 这个作用是选择输入的内容类型
|
||||
android:textColorHint 这个作用是设置文本框内提示内容的颜色-->
|
||||
|
||||
<!--android:onClick 这个作用是与java文件中的监听事件对应
|
||||
android:text 这个作用是给按钮一个文本显示-->
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:layout_width="400dp"
|
||||
android:layout_height="100dp"
|
||||
android:text="隔离酒店智慧管理系统"
|
||||
android:textColor="#083684"
|
||||
android:gravity="center"
|
||||
android:textSize="30dp"
|
||||
>
|
||||
|
||||
</TextView>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/icon"
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="100dp"
|
||||
android:background="@drawable/hotel_logo"
|
||||
app:layout_constraintTop_toBottomOf="@id/title"
|
||||
>
|
||||
|
||||
</ImageView>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/name"
|
||||
android:layout_width="264dp"
|
||||
android:layout_height="50dp"
|
||||
android:background="@color/white"
|
||||
android:ems="12"
|
||||
android:layout_marginTop="10dp"
|
||||
android:hint="输入用户名"
|
||||
android:inputType="text"
|
||||
android:textColorHint="#083684"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="75dp"
|
||||
tools:layout_editor_absoluteY="256dp"></EditText>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/passwd"
|
||||
android:layout_width="264dp"
|
||||
android:layout_height="50dp"
|
||||
android:background="@color/white"
|
||||
android:layout_marginTop="10dp"
|
||||
android:ems="12"
|
||||
android:hint="输入密码"
|
||||
android:inputType="textPassword"
|
||||
android:textColorHint="#083684"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="75dp"
|
||||
tools:layout_editor_absoluteY="360dp"></EditText>
|
||||
|
||||
<!-- <RadioGroup
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/radioButton"
|
||||
android:orientation="horizontal"
|
||||
android:layout_constraintTop_toBottomOf="@id/passwd">
|
||||
|
||||
<RadioButton
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/radioButton_1"
|
||||
android:text="隔离人员"
|
||||
android:textColor="#083684">
|
||||
|
||||
</RadioButton>
|
||||
|
||||
<RadioButton
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/radioButton_2"
|
||||
android:text="管理员"
|
||||
android:textColor="#083684">
|
||||
|
||||
</RadioButton>
|
||||
|
||||
</RadioGroup>-->
|
||||
|
||||
|
||||
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="48dp"
|
||||
android:onClick="login"
|
||||
android:text="登录"
|
||||
android:layout_marginTop="10dp"
|
||||
android:backgroundTint="#083684"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="105dp"
|
||||
tools:layout_editor_absoluteY="469dp" />
|
||||
<!---->
|
||||
<Button
|
||||
android:id="@+id/register"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="48dp"
|
||||
android:onClick="reg"
|
||||
android:text="注册"
|
||||
android:layout_marginTop="10dp"
|
||||
android:backgroundTint="#083684"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="105dp"
|
||||
tools:layout_editor_absoluteY="469dp" />
|
||||
</LinearLayout>
|
||||
<!---->
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
Loading…
Reference in new issue