<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:orientation="vertical"
|
android:background="@color/white"
|
android:layout_height="match_parent">
|
|
<ImageView
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="62dp"
|
android:layout_width="120dp"
|
android:layout_height="120dp"
|
android:src="@mipmap/android_icon"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:paddingStart="24dp"
|
android:paddingEnd="24dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<include layout="@layout/include_login_phone"/>
|
|
<include layout="@layout/include_login_pwd"/>
|
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_forget_pwd"
|
android:layout_gravity="right"
|
android:layout_marginEnd="34dp"
|
android:layout_marginTop="8dp"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="忘记密码?"
|
android:visibility="gone"
|
android:textColor="#ff000000"
|
android:textSize="12sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_login"
|
android:layout_width="match_parent"
|
android:text="登录"
|
android:textColor="#ffffffff"
|
android:gravity="center"
|
android:layout_marginTop="44dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:background="@drawable/bg_login"
|
android:textSize="14sp"
|
android:layout_height="40dp"/>
|
|
|
</LinearLayout>
|