如何禁用当前日期之后的日期?

时间:2018-11-26 08:28:40

标签: android date android-datepicker

在日期选择器中帮助禁用从当前日期开始的所有日期。
这是我的代码:

public class MyDatePickerDialogue extends DatePickerDialog{
    private CharSequence title;
    private Context context;

    public MyDatePickerDialogue(Context context, OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) {

        super(context, callBack, year, monthOfYear, dayOfMonth);
        this.context = context;
    }

    public void setPermanentTitle(CharSequence title) {
        this.title = title;
        setTitle(title);
    }

    @Override
    public void onDateChanged(DatePicker view, int year, int month, int day) {
        super.onDateChanged(view, year, month, day);
        setTitle(title);
        Toast.makeText( context,"Date picked", Toast.LENGTH_SHORT).show();
        SingletonClass.getSingletonClass().singletondate = year+"-"+(month+1)+"-"+day;
        //save the date that is picked into the singleton class
        //i represents year , i1 represents month and i2  represents day

        context.startActivity(new Intent(context,DescriptionActivity.class));

    }
}

1 个答案:

答案 0 :(得分:1)

您可以为DatePicker视图设置maxDate

    Date today = new Date();
    Calendar c = Calendar.getInstance(TimeZone.getDefault());
    c.setTime(today);
    maxDate = c.getTime().getTime();
    view.setMaxDate(maxDate);