Search code examples
androidandroid-calendar

How to get Start date and end date of month?


i am using this libs CalnderView any one know how to get end and last date of month?


Solution

  • Its not about any library but you can get it as.

    Calendar.getInstance().getActualMaximum(Calendar.DAY_OF_MONTH);
    

    This returns actual maximum for current month.