61 lines
2.9 KiB
XML
61 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.aigestudio.wheelpicker.widgets.WheelYearPicker
|
|
android:id="@+id/wheel_date_picker_year"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:wheel_indicator_color="@color/theme_divider_line"
|
|
app:wheel_item_space="@dimen/theme_wheel_item_space"
|
|
app:wheel_item_text_color="@color/theme_txt_light"
|
|
app:wheel_item_text_size="@dimen/theme_14sp"
|
|
app:wheel_selected_item_text_color="@color/theme_txt"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_14sp"
|
|
android:textColor="@color/theme_txt_light"
|
|
android:id="@+id/wheel_date_picker_year_tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/wheel_margins"
|
|
android:layout_marginRight="@dimen/wheel_margins"
|
|
android:text="@string/Year"/>
|
|
<com.aigestudio.wheelpicker.widgets.WheelMonthPicker
|
|
android:id="@+id/wheel_date_picker_month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:wheel_indicator_color="@color/theme_divider_line"
|
|
app:wheel_item_space="@dimen/theme_wheel_item_space"
|
|
app:wheel_item_text_color="@color/theme_txt_light"
|
|
app:wheel_item_text_size="@dimen/theme_14sp"
|
|
app:wheel_selected_item_text_color="@color/theme_txt"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_14sp"
|
|
android:textColor="@color/theme_txt_light"
|
|
android:id="@+id/wheel_date_picker_month_tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/wheel_margins"
|
|
android:layout_marginRight="@dimen/wheel_margins"
|
|
android:text="@string/Month"/>
|
|
<com.aigestudio.wheelpicker.widgets.WheelDayPicker
|
|
android:id="@+id/wheel_date_picker_day"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:wheel_indicator_color="@color/theme_divider_line"
|
|
app:wheel_item_space="@dimen/theme_wheel_item_space"
|
|
app:wheel_item_text_color="@color/theme_txt_light"
|
|
app:wheel_item_text_size="@dimen/theme_14sp"
|
|
app:wheel_selected_item_text_color="@color/theme_txt"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_14sp"
|
|
android:textColor="@color/theme_txt_light"
|
|
android:id="@+id/wheel_date_picker_day_tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/wheel_margins"
|
|
android:text="@string/Day"/>
|
|
</LinearLayout>
|