lmw
2024-09-23 f23be5d1086538d541281b84d8b093f95c545c47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?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>