I am looking and have been looking for a good example or tutorial on calculating/finding a future date by adding a set number of days.

I have a date picker that opens when user clicks on EditText so they can select the date, then I'm wanting to add lets say 56 days to that date. then show a Toast or Dialog that displays the future date from the date set. Then after i learn and figure that out I'm going to have my app show a notification on that date.

not sure if i should be using calendar or alarm,, oh and this data is being stored in a SQLite DB. like always hope i have given enough info to give you an idea of what I'm trying to do.

any help, pointers or suggestions will be awesome, as i am still learning both java and android

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
public void getFutureDate(Date currentDate, int days) {
    Calendar cal = Calendar.getInstance();
    cal.setTime(currentDate);
    cal.add(Calendar.DATE, days);

    Date futureDate = cal.getTime();
}

currentDate: Date from date picker, days: Number of days to be added to currentDate

Hope this would help.

link|improve this answer
feedback

Why not Calendar.add(field, amount)?

From that, yes, you could use AlarmManager. I don't know much, but I believe that would do.

Of course, your question is generic and does not add an specific problem. That said, considering the pattern, I believe the above will do.

link|improve this answer
And the rest is up to you! Research the implementation details. :-) – David Dec 1 '11 at 3:55
doesn't that just add to the one specific field? – acrichm Dec 1 '11 at 3:55
i'll give that a try, thanks for a push in a direction to try out – acrichm Dec 1 '11 at 4:02
You're so welcome. If you need any clarification, just comment here and I'll know. Good luck! – David Dec 1 '11 at 4:21
I stand corrected - was sure I'd tested it in my TV Guide app. Perhaps just the month rollover and not the year. Doh! – MisterSquonk Dec 1 '11 at 4:35
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.