Search code examples
androidandroid-date

android- how to create tomorrow date via Date class


I want to make tomorrow date via Date class , this is my code for making today's date :

 persianDatePicker.setDisplayDate(new Date());

how can I make tomorrow date via Date class ?


Solution

  • You can do it like this:

    Calendar calendar=Calendar.getInstance();
            calendar.add(Calendar.DAY_OF_YEAR, 1);
            Date tomorrow=calendar.getTime();
    persianDatePicker.setDisplayDate(tomorrow);