Still able to select disabled dates in date picker

后端 未结 4 1951
暖寄归人
暖寄归人 2020-12-16 18:31

I want to disable the past dates of date picker in android. i can do it by using

dialog.getDatePicker().setMinDate(System.currentTimeMillis() - 1000);
         


        
4条回答
  •  天涯浪人
    2020-12-16 19:23

    Got to know from a comment that this is a bug in Lollipop. So, fixed it programatically.

    All you need to do is check the selected date with the min date set.

提交回复
热议问题