How To Set The Calendar In Android For Particular Hour
I dont want to add the year or month.Just the hour , minutes and seconds for each day. How to use it the Calendar object to do it ? This is my code // get a Calendar object with cu
Solution 1:
try using
calendar.set(Calendar.HOUR_OF_DAY, 4);
calendar.set(Calendar.MINUTE, 40);
calendar.set(Calendar.SECOND, 0);
Post a Comment for "How To Set The Calendar In Android For Particular Hour"