如何在DatePickerDialog Android中禁用今天日期之后的日期?

时间:2016-06-16 09:15:49

标签: android android-studio datepicker android-datepicker datepickerdialog

我想在DatePickerDialog中停用今天日期的所有下一个(之后)日期。

我使用下面的代码创建DatePickerDialog:

<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"
    tools:context="com.example.jeshtamsru.tntrains.DashboarsActivity">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <LinearLayout android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <RelativeLayout
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:orientation="horizontal"
                 android:layout_gravity="center_horizontal">
                 <Button
                      android:layout_width="wrap_content"
                      android:width="300dp"
                      android:gravity="center"
                      android:layout_height="wrap_content"
                      android:text="chennai to coimbatore"/>
         </RelativeLayout>
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_gravity="center_horizontal">
            <Button
                android:layout_width="wrap_content"
                android:width="300sp"
                android:gravity="center"
                android:layout_height="wrap_content"
                android:text="chennai to coimbatore"/>
        </RelativeLayout>
    </LinearLayout>
 </ScrollView>
</LinearLayout>

请建议我必须做些什么来禁用datepicker对话框中的所有上一个日期。

1 个答案:

答案 0 :(得分:11)

只需传递setMaxDate()的{​​{1}}中的当前日期。

DatePickerDialog

DatePickerDialog dpDialog = new DatePickerDialog(getContext(), myDateListener, mYear, mMonth, mDay);
dpDialog.getDatePicker().setMaxDate(calendar.getTimeInMillis());