How to disable dates before today date in DatePickerDialog Android?

前端 未结 5 997
深忆病人
深忆病人 2020-11-30 07:18

I want to disable the dates before today date in the DatePickerDialog .I am new in android please suggest me how could i do this .Here is my code that i have written for Dat

5条回答
  •  甜味超标
    2020-11-30 07:41

    I know it is too late. But hope this will helps. Use

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

    in your case date is DatePickerDialog

    Cheers!

提交回复
热议问题