<?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>
|