lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
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"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@color/page_bg">
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_white_6dp"
        android:elevation="2dp"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginTop="8dp"
        android:layout_marginStart="12dp"
        android:layout_marginEnd="12dp">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_title"
            android:text="乘车人"
            android:textColor="@color/textColor"
            android:textStyle="bold"
            android:textSize="16sp"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_margin="13dp"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="number"
            android:hint="手机号"
            style="@style/style_form_text_mine"
            app:layout_constraintTop_toBottomOf="@id/tv_title"
            android:layout_marginStart="13dp"
            android:background="@null"
            android:layout_marginTop="6dp"
            android:id="@+id/et_phone"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/style_form_text_mine"
            android:drawableEnd="@mipmap/icon_more_black"
            app:layout_constraintBaseline_toBaselineOf="@id/et_phone"
            app:layout_constraintEnd_toEndOf="@id/et_phone"
            android:layout_marginEnd="12dp"
            android:textStyle="normal"
            android:id="@+id/tv_contact"
            android:text="通讯录"/>
        <View style="@style/style_form_divider_line"
            app:layout_constraintTop_toBottomOf="@id/et_phone"
            android:layout_marginStart="13dp"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/style_form_text_mine"
            android:hint="姓名"
            android:id="@+id/et_name"
            app:layout_constraintTop_toBottomOf="@id/et_phone"
            android:background="@null"
            android:layout_marginStart="13dp"
            />
    </androidx.constraintlayout.widget.ConstraintLayout>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/style_tv_action"
        android:id="@+id/tv_action"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginBottom="14dp"
        android:text="确认代叫"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv_rule"
        app:layout_constraintBottom_toTopOf="@id/tv_action"
        android:text="《福伴出行服务协议》"
        android:textColor="@color/textColor66"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginBottom="8dp"
        android:padding="4dp"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="未成年乘车需由监护人陪同\n乘车人行程中违反平台规则,代叫人需承担连带责任"
        app:layout_constraintBottom_toTopOf="@id/tv_rule"
        android:textColor="@color/black"
        android:textSize="14sp"/>
</androidx.constraintlayout.widget.ConstraintLayout>