0

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 ?

navid abutorab
  • 189
  • 1
  • 2
  • 9

1 Answers1

0

You can do it like this:

Calendar calendar=Calendar.getInstance();
        calendar.add(Calendar.DAY_OF_YEAR, 1);
        Date tomorrow=calendar.getTime();
persianDatePicker.setDisplayDate(tomorrow);
Mina Wissa
  • 10,923
  • 13
  • 90
  • 158