我想在 Android 中使用日期选择器。这是我的 XML 代码。出发日期应从当前日期开始,返回日期应大于我的出发日期
<LinearLayout
android:id="@+id/dateLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/fromToLayout"
android:baselineAligned="false"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/departdateLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical" >
<TextView
android:id="@+id/deparDateTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:gravity="center_horizontal"
android:text="@string/departdate" />
<TextView
android:id="@+id/departDate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="dd/mm/yyyy" />
</LinearLayout>
<LinearLayout
android:id="@+id/returndateLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical" >
<TextView
android:id="@+id/returndata"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:gravity="center_horizontal"
android:text="@string/returndate" />
<TextView
android:id="@+id/returnDate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="dd/mm/yyyy"/>
</LinearLayout>
</LinearLayout>
代替 ID 为 returnDate 和离开日期的 TextView 我想使用 datepicker 以便用户单击日历从那里打开,他可以选择日期并且该日期被填写在这个 Texview