I have variables which store the values
int day = Calender.SATURDAY;
int hour = 18;
int minutes = 33;
How can I convert this to Date? so How I can find the time difference in milliseconds from Current date time?
Cases :
If the current date, time pass already passed, for example: If the current day is Saturday, and now time is 19: 00, than get the next week date time interval.
If the current day is Saturday, and now time is 18: 30, (the time interval should be 180000 milliseconds = 3 minutes).
How can I do this in android? Please help me with finding the proper solution for this problem.