<?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_hour"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_horizontal">

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

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

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

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

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

</LinearLayout>