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
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content">
    <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
                  android:orientation="vertical"
                  android:layout_marginStart="14dp"
                  android:layout_marginEnd="14dp"
                  android:layout_marginBottom="14dp"
                  android:background="@drawable/bg_white_10dp">
        <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
 
            <TextView
                    android:id="@+id/tv_cancel"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:padding="16dp"
                    android:text="取消"
                    android:textColor="@color/textColor99"
                    android:textSize="@dimen/textSize"/>
 
            <TextView
                    android:id="@+id/tv_sure"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:padding="16dp"
                    android:text="确认"
                    android:textColor="@color/colorPrimary"
                    android:textSize="@dimen/textSize"/>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
                      android:id="@+id/tv_title"
                      android:layout_centerHorizontal="true"
                      android:textColor="@color/textColor"
                      android:textSize="16sp"
                      android:layout_marginTop="14dp"
                      android:textStyle="bold"
                      android:text="修改小费金额"/>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_below="@id/tv_title"
            android:text="小费归司机所有,添加将提高应答率"
            android:layout_centerHorizontal="true"
            android:textSize="12sp"
            android:textColor="@color/textColor99"/>
        </RelativeLayout>
 
        <LinearLayout
                android:id="@+id/ll_content"
                android:layout_width="fill_parent"
                android:layout_height="180dp"
                android:orientation="vertical"
                android:layout_marginTop="2dp"
                android:layout_marginBottom="20dp">
            <View style="@style/style_form_divider_line"
                android:layout_marginTop="14dp"
                android:layout_marginStart="14dp"/>
            <cn.sinata.xldutils.view.WheelView
                    android:id="@+id/wv_1"
                    android:layout_width="match_parent"
                android:layout_marginTop="14dp"
                    android:layout_height="match_parent"/>
        </LinearLayout>
    </LinearLayout>
</FrameLayout>