|
|
@ -1,44 +1,53 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/container" |
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
android:id="@+id/container" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:orientation="horizontal"> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:id="@+id/pickerWrapper" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:gravity="center" |
|
|
|
> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/year" |
|
|
|
android:tag="year" |
|
|
|
style="@style/android_native" /> |
|
|
|
style="@style/android_native" |
|
|
|
android:tag="year" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/month" |
|
|
|
android:tag="month" |
|
|
|
style="@style/android_native" /> |
|
|
|
style="@style/android_native" |
|
|
|
android:tag="month" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/date" |
|
|
|
android:tag="date" |
|
|
|
style="@style/android_native_small" /> |
|
|
|
style="@style/android_native_small" |
|
|
|
android:tag="date" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/day" |
|
|
|
android:tag="day" |
|
|
|
style="@style/android_native" /> |
|
|
|
style="@style/android_native" |
|
|
|
android:tag="day" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/hour" |
|
|
|
android:tag="hour" |
|
|
|
style="@style/android_native_small" /> |
|
|
|
style="@style/android_native_small" |
|
|
|
android:tag="hour" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/minutes" |
|
|
|
android:tag="minutes" |
|
|
|
style="@style/android_native_small" /> |
|
|
|
style="@style/android_native_small" |
|
|
|
android:tag="minutes" /> |
|
|
|
|
|
|
|
<com.henninghall.date_picker.pickers.AndroidNative |
|
|
|
android:id="@+id/ampm" |
|
|
|
android:tag="ampm" |
|
|
|
style="@style/android_native_small" |
|
|
|
android:layout_width="40dp" |
|
|
|
style="@style/android_native_small" /> |
|
|
|
android:tag="ampm" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
</LinearLayout> |