我正在做一个项目,我需要限制用户选择我想要的任何其他日期。
通过阅读一些文章和SO帖子,我尝试了以下应该可行的方法
com.wdullaer.materialdatetimepicker.date.DatePickerDialog dpd = newInstance(
ActivityClaimOffers.this,
now.get(Calendar.YEAR),
now.get(Calendar.MONTH),
now.get(Calendar.DAY_OF_MONTH)
);
dpd.setMinDate(calendar);
dpd.setMaxDate(calendar);
但我不知道如何将自定义日期作为日历对象传递。因为 setMinDate() 和 setMaxDate() 都将 Calendar 作为参数