i want to set an alarm to the specific date choosen by user, when i set to the day before current day, it sets it to past date, i want it to set to future.
Here is my Calendar set code:
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, hour.getHour());
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);
calendar.set(Calendar.AM_PM, Calendar.AM);
calendar.set(Calendar.DAY_OF_WEEK, Calendar.Monday);
let's say today is thursday, when i set date to monday, i want it to set to 4 days later, but it sets to 3 days before, to past monday