parent
3a33746b74
commit
f8ef45b461
@ -0,0 +1,137 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout 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:id="@+id/main"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@drawable/bg3"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/iv_head"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:layout_height="150dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginTop="80dp"
|
||||||
|
android:layout_marginBottom="10dp"
|
||||||
|
android:background="@drawable/finefood" />
|
||||||
|
<!-- 软件名输入框-->
|
||||||
|
<TextView
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="70dp"
|
||||||
|
android:text="@string/fine_food"
|
||||||
|
android:textSize="40sp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:typeface="monospace"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textColor="@color/black" />
|
||||||
|
|
||||||
|
<!-- 用户名输入框-->
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_user_name"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:layout_marginLeft="35dp"
|
||||||
|
android:layout_marginTop="35dp"
|
||||||
|
android:layout_marginBottom="10dp"
|
||||||
|
android:layout_marginRight="35dp"
|
||||||
|
android:background="@drawable/background"
|
||||||
|
android:gravity="center"
|
||||||
|
android:hint="@string/email_address"
|
||||||
|
android:inputType="text"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textColorHint="#a3a3a3"
|
||||||
|
android:textSize="18sp" />
|
||||||
|
|
||||||
|
<!--密码输入框-->
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_psw"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:layout_marginLeft="35dp"
|
||||||
|
android:layout_marginRight="35dp"
|
||||||
|
android:background="@drawable/background"
|
||||||
|
android:gravity="center"
|
||||||
|
android:hint="@string/password"
|
||||||
|
android:inputType="textPassword"
|
||||||
|
android:textColor="#000000"
|
||||||
|
android:textColorHint="#a3a3a3"
|
||||||
|
android:textSize="18sp" />
|
||||||
|
|
||||||
|
<!-- 忘记密码-->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/forget_psw"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:gravity="center"
|
||||||
|
android:hint="@string/forget_password"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textColor="#000000"
|
||||||
|
android:textColorHint="#a3a3a3"
|
||||||
|
android:textSize="18sp"
|
||||||
|
tools:ignore="RtlSymmetry" />
|
||||||
|
|
||||||
|
<!--按钮-->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/btn_login"
|
||||||
|
android:layout_width="200dp"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:text="@string/login"
|
||||||
|
android:backgroundTint="#FF4266"
|
||||||
|
android:textColor="@android:color/white"
|
||||||
|
android:textSize="18sp" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/othermethod"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:text="@string/or1"
|
||||||
|
android:gravity="center"
|
||||||
|
android:textSize="18sp"/>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_marginLeft="35dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginRight="35dp"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/lianshu"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:src="@drawable/facebook"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginEnd="50dp"/>
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/guge"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:src="@drawable/googleplus"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginEnd="50dp"/>
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/feishu"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:src="@drawable/flybook"
|
||||||
|
android:layout_gravity="center"/>
|
||||||
|
</LinearLayout>
|
||||||
|
<RadioButton
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text="@string/check_the_consent_agreement"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="18dp"/>
|
||||||
|
</LinearLayout>
|
Loading…
Reference in new issue