大家好: 如何在Android中的DatePickerDialog中禁用将来的日期。
我正在使用以下实现。 http://www.androidpeople.com/android-datepicker-dialog-example
由于 Ashwani
答案 0 :(得分:20)
您应该可以在DatePickerDialog上调用getDatePicker()。setMaxDate(long),将今天设置为最大日期。您可以使用您发布的代码段中的相同名称更新该功能。
请注意,DatePickerDialog是我在Android文档中从我发布的链接中引用的对象。
@Override
protected Dialog onCreateDialog(int id) {
Calendar c = Calendar.getInstance();
int cyear = c.get(Calendar.YEAR);
int cmonth = c.get(Calendar.MONTH);
int cday = c.get(Calendar.DAY_OF_MONTH);
switch (id) {
case DATE_DIALOG_ID:
//start changes...
DatePickerDialog dialog = new DatePickerDialog(this, mDateSetListener, cyear, cmonth, cday);
dialog.getDatePicker().setMaxDate(new Date().getTime());
return dialog;
//end changes...
}
return null;
}