2

I'm using Caldroid library https://github.com/roomorama/Caldroid. I want to disable all dates earlier than today. How can I do that? There is method setDisableDates, but it requires passing as argument list of dates to disable.

user3626048
  • 706
  • 4
  • 19
  • 52

2 Answers2

6

I found solution - use method setMinDate.

user3626048
  • 706
  • 4
  • 19
  • 52
0

This will work for you:

 setMinDateTime(getToday());

use in customizeTextView() in CaldroidGridAdapter class

Inder
  • 3,711
  • 9
  • 27
  • 42
ashunkhs
  • 61
  • 1
  • 7