In the library documentation there is mentioned that how to use select able days and how to disable certain days. For both purpose you have to pass the array of days to the respective methods.
For example if you want to select certain days only you have to pass the array of days to the method. To create the days arraylist use following code
Calendar[] days = new Calendar[13];
for (int i = -6; i < 7; i++) {
Calendar day = Calendar.getInstance();
day.add(Calendar.DAY_OF_MONTH, i * 2);
days[i + 6] = day;
}
Now after initializing the datpicker dialog call the method to select the days or disable days.
DatePickerDialog datePickerDialog = DatePickerDialog.newInstance(MainActivity.this,
cal.get(Calendar.YEAR),
cal.get(Calendar.MONTH),
cal.get(Calendar.DAY_OF_MONTH));
datePickerDialog.setDisabledDays(days)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…