Next day, Previous day using Calendar

There are two method to increase/decrease date. add() and roll()
methods.

But use:
 calendar.add(Calendar.DAY_OF_MONTH, -1); // go to previous day
 calendar.add(Calendar.DAY_OF_MONTH, 1); // go to next day

not
 calendar.roll(Calendar.DAY_OF_MONTH, -1); // set previous day without
month changes

for example:
 calendar.add():
   before : 31.12.2009 after 01.01.2010

 calendar.roll()
  before : 31.12.2009 after 01.12.2009

founded: http://developer.android.com/reference/java/util/Calendar.html

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to