<?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="32dp"
|
android:layout_width="120dp"
|
android:layout_height="120dp"
|
android:src="@mipmap/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:textColor="@color/textColor66"
|
android:textSize="12sp"
|
/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="20dp"
|
android:layout_height="wrap_content">
|
<CheckBox
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/cb_rule"
|
android:layout_marginStart="14dp"
|
android:text="我已阅读并同意"
|
android:textSize="11sp"
|
android:paddingStart="4dp"
|
android:textColor="@color/textColor"
|
android:paddingVertical="8dp"
|
android:button="@drawable/selector_radio"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="11sp"
|
android:textColor="#0853FD"
|
android:paddingVertical="8dp"
|
android:id="@+id/tv_rule"
|
android:text="《未来出行司机用户服务协议》"/>
|
</LinearLayout>
|
<TextView
|
android:id="@+id/tv_login"
|
android:layout_width="match_parent"
|
android:text="登录"
|
android:textColor="#ffffffff"
|
android:gravity="center"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:background="@drawable/bg_login"
|
android:textSize="14sp"
|
android:layout_height="40dp"/>
|
|
<TextView
|
android:id="@+id/tv_driver"
|
android:layout_width="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="24dp"
|
android:text="成为司机>>"
|
android:textStyle="bold"
|
android:textColor="@color/main_yellow_shen"
|
android:textSize="13sp"
|
/>
|
|
|
</LinearLayout>
|