How to disable dates before today date in DatePickerDialog Android?

前端 未结 5 995
深忆病人
深忆病人 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:47

    // Create a new instance of DatePickerDialog and return it

     DatePickerDialog datePickerDialog = new DatePickerDialog(getActivity(), this,year,month,day);
                datePickerDialog.getDatePicker().setMinDate(System.currentTimeMillis());
                return datePickerDialog;
    

提交回复
热议问题