<?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="match_parent"
|
android:orientation="vertical" >
|
|
<DatePicker
|
android:id="@+id/dialog_date_select_date_picker"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:calendarViewShown="false"
|
android:calendarTextColor="@color/colorPrimary"
|
/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:background="@color/colorText_b"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
<TextView
|
android:id="@+id/dialog_date_select_ok"
|
android:layout_weight="1"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/h50dp"
|
android:gravity="center"
|
android:text="@string/confirm"
|
android:textColor="#000000"
|
android:textSize="@dimen/w16dp"
|
/>
|
<TextView
|
android:id="@+id/dialog_date_select_cancel"
|
android:layout_weight="1"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/h50dp"
|
android:gravity="center"
|
android:text="@string/cancel"
|
android:textColor="#000000"
|
android:textSize="@dimen/w16dp"
|
/>
|
</LinearLayout>
|
</LinearLayout>
|