lss
2022-05-26 ff886457f58791eea4532f6167af51184d9dfe43
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FFFFFF"
    android:orientation="vertical">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="44dp"
        android:background="#21C0C7D4">
 
        <TextView
            android:id="@+id/lp_dialog_cancel_tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginStart="10dp"
            android:text="@string/lp_cancel"
            android:textColor="@color/lpsdk_textColor"
            android:textSize="14sp" />
 
        <TextView
            android:id="@+id/lp_dialog_confirm_tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            android:layout_marginEnd="10dp"
            android:text="@string/lp_confirm"
            android:textColor="#4484F4"
            android:textSize="14sp" />
 
    </RelativeLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
 
        <DatePicker
            android:id="@+id/lp_dialog_data_picker"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:datePickerMode="spinner"
            android:calendarViewShown="false"
            android:theme="@style/time_picker_style" />
 
        <TimePicker
            android:id="@+id/lp_dialog_time_picker"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.75"
            android:theme="@style/time_picker_style"
            android:timePickerMode="spinner" />
    </LinearLayout>
</LinearLayout>