Android里在一个按钮上显示当前时间是这样
Button stopButton = (Button) this
.findViewById(R.id.StartTrackingEditStopTime_button);
// 格式化时间
SimpleDateFormat sdfStopTime = new SimpleDateFormat("hh:mm:ss a",
Locale.ENGLISH);
// 当前时间
String newStoptime = sdfStopTime
.format(new Date(System.currentTimeMillis()));
stopButton.append(newStoptime);
那我要在这里显示一段时间以后的时间,比如1小时,24小时,48小时,要怎么做?