AndroidPicker
AndroidPicker copied to clipboard
日期选择器想要选择过去的日期,禁止选择未来日期
日期选择器想要选择过去的日期,禁止选择未来日期
日历日期选择器
@q88qaz 调用setRangeDate(Date minDate, Date maxDate)
设置日期范围就行。
4.1.11版本,使用DatimeWheelLayout 无法选择过去的日期
4.1.11版本,使用DatimeWheelLayout 无法选择过去的日期
设置DatimeEntitiy、DateEntity及TimeEntity的时候不要用xxOnFutrue
的方法,直接new
指定具体的年月日,如:
DateWheelLayout wheelLayout = picker.getWheelLayout();
wheelLayout.setDateMode(DateMode.YEAR_MONTH_DAY);
wheelLayout.setDateFormatter(new UnitDateFormatter());
//wheelLayout.setRange(DateEntity.target(2021, 1, 1), DateEntity.target(2050, 12, 31), DateEntity.today());