Heim > Fragen und Antworten > Hauptteil
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小时,要怎么做?
PHP中文网2017-04-17 11:05:44
两个办法,第一个就想Dary说的,直接在当前时间上加毫秒数
SimpleDateFormat sdfStopTime = new SimpleDateFormat("hh:mm:ss a", Locale.ENGLISH); String newStoptime = sdfStopTime.format( new Date(System.currentTimeMillis() + 86400000));
第二个,用Calendar
Calendar c = Calendar.getInstance(); c.add(Calendar.HOUR, 1); Date d = c.getTime(); String newStopTime = sdfStopTime.format(d);