两个日期采摘器同时打开是否有可能?

时间:2018-03-07 19:03:35

标签: android date datepicker

我需要在IO中输入与此应用程序类似的初始日期和最终日期:

Gif video about IOs app

我正在考虑使用DatePicker输入初始日期,然后使用另一个或相同的日期。

但我的老板想要同时看到DatePicker的开始日期和结束日期。这可能吗?

或者有办法做一些类似于之前指示的视频gif。

由于

1 个答案:

答案 0 :(得分:1)

你可以使用下面的2个日期选择器,

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
   >

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            >

            <DatePicker
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"                

                ></DatePicker>

            <DatePicker
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

            </DatePicker>



        </LinearLayout>
    </ScrollView>





</LinearLayout>