<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <RelativeLayout
        android:id="@+id/rl_year"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">

        <acquire.base.widget.WheelPicker
            android:id="@+id/wp_year"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:cycle="false"
            app:rightText="@string/base_dialog_date_year"
            app:showCount="3" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rl_month"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">

        <acquire.base.widget.WheelPicker
            android:id="@+id/wp_month"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:cycle="false"
            app:rightText="@string/base_dialog_date_month"
            app:showCount="3" />

    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rl_day"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">

        <acquire.base.widget.WheelPicker
            android:id="@+id/wp_day"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:cycle="false"
            app:rightText="@string/base_dialog_date_day"
            app:showCount="3" />

    </RelativeLayout>

</LinearLayout>