I have date time field. How to set to value to 8 A.M (if time value is between 16:00-00:00) and in the same time to set it for tomorrow date? I need to increase it with value for one day and set it to 8 A.M
I tried
Calendar calendar = Calendar.getInstance();
calendar.setTime(mydate);
calendar.add(Calendar.DATE, 1);
date= calendar.getTime()
but I do not know how to check if mydate is in interval between 16:00 and 00:00 because than I must do the addition. Also do not know hot to set time value for static 8 A.M value
Please help, thank you