简体   繁体   中英

how to get next day of current date in a MonthDisplayHelper in android?

i have a monthdisplayhelper to display the month, i want to select days between two date. ie,if i selected 2nd July and 9th July, all the dates(3rd to 8th) in between these dates must be selected or highlighted.

You can use the Calendar class. Initialise a new Calendar object for your initial date, then use [calendar instance].add(Calendar.DAY_OF_YEAR, 1) to increment the date by 1 day, it'll automatically roll to the next month if required.

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

如果你知道你需要多少天,那么你可以有一个循环基本上添加天数并存储在列表中

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM