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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@drawable/shape_white_8r"
    android:layout_marginBottom="16dp"
    android:layout_height="wrap_content">
    <TextView
        android:id="@+id/action_sure"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:paddingTop="12dp"
        android:paddingBottom="12dp"
        android:layout_marginRight="16dp"
        android:layout_alignParentRight="true"
        android:textSize="@dimen/buttonTextSize"
        android:textColor="@color/textColor"
        android:text="@string/sure"/>
    <TextView
        android:id="@+id/action_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:textSize="@dimen/buttonTextSize"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:paddingTop="12dp"
        android:paddingBottom="12dp"
        android:textColor="@color/textColor99"
        android:layout_marginLeft="16dp"
        android:text="@string/cancel"/>
    <cn.sinata.xldutils.widget.MDatePicker
        android:layout_width="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_height="wrap_content"
        android:layout_below="@+id/action_sure"
        style="@style/datePickerStyle"
        android:id="@+id/mDatePicker"/>
</RelativeLayout>