I have my time in the below format, and I use this value to set the text of my button.
String strDateFormat = "HH:mm: a";
SimpleDateFormat sdf ;
sdf = new SimpleDateFormat(strDateFormat);
startTime_time_button.setText(sdf.format(date));
Now my question is,
is it possible to add one hour to this time format?
I think the best and easiest way is using Apache Commons Lang:
http://commons.apache.org/lang/api-2.6/org/apache/commons/lang/time/DateUtils.html