Changing Day_of_WEEK not updating Day_of_month (Android Calendar) -
Changing Day_of_WEEK not updating Day_of_month (Android Calendar) -
today tuesday , date 24 when set day_of_week mon day_of_month still remain 24 want move automatically next mon because mon of week has passed.
calendar calendar = calendar.getinstance(); calendar.set(calendar.day_of_week, calendar.monday); calendar.set(calendar.hour, hour); calendar.set(calendar.minute, minute); calendar.set(calendar.second, 0); calendar.set(calendar.millisecond, 0);
you straight setting day of week without adding numerical day. if not know how many days add together directly, run through loop adds day until monday.
while (calendar.day_of_week != calendar.monday) { calendar.add(calendar.date, 1); } android
Comments
Post a Comment