我有一个显示当前时间的开始按钮,我希望能够有一个停止时间比当前时间晚一小时的按钮。我该怎么做呢?
这是显示当前时间的按钮的代码
Button stopButton = (Button) this
.findViewById(R.id.StartTrackingEditStopTime_button);
// using SimpleDateFormat class
SimpleDateFormat sdfStopTime = new SimpleDateFormat("hh:mm:ss a",
Locale.ENGLISH);
String newStoptime = sdfStopTime
.format(new Date(System.currentTimeMillis()));
stopButton.append(newStoptime);
非常感谢您提供有关如何执行此操作的任何帮助或建议。