【发布时间】:2011-03-02 05:17:25
【问题描述】:
如何计算时差并以 00:00 格式显示结果。 我找不到方法,如何将字符串数据发送到日期以及如何以 EditText 00:00 格式显示结果。 我自己尝试过,但它显示了找不到源的错误。 下面是代码。
public class TimeCalculate extends Activity {
private String mBlock = null;
private String mBlockoff = null;
private String mBlockon = null;
Date date1,date2;
EditText block;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText blockoff = (EditText) findViewById(R.id.blockoff);
mBlockoff = blockoff.getText().toString();
EditText blockon = (EditText) findViewById(R.id.blockon);
mBlockon = blockon.getText().toString();
block = (EditText) findViewById(R.id.block);
mBlock = getDifference(date1, date2);
date1 = new Date(mBlockoff);
date2 = new Date(mBlockon);
blockon.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
block = (EditText) findViewById(R.id.block);
mBlock = getDifference(date1, date2);
block.setText(mBlock);
}
}
public static String getDifference(Date startTime, Date endTime) {
String timeDiff;
if (startTime == null)
return "[corrupted]";
Calendar startDateTime = Calendar.getInstance();
startDateTime.setTime(startTime);
Calendar endDateTime = Calendar.getInstance();
endDateTime.setTime(endTime);
long milliseconds1 = startDateTime.getTimeInMillis();
long milliseconds2 = endDateTime.getTimeInMillis();
long diff = milliseconds2 - milliseconds1;
long hours = diff / (60 * 60 * 1000);
long minutes = diff / (60 * 1000);
minutes = minutes - 60 * hours;
long seconds = diff / (1000);
timeDiff = hours + ":" + minutes;
return timeDiff;
}
}
我使用 SampleDateFormat 修改的代码
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("hh:mm");
try {
date1 = simpleDateFormat.parse(mBlockoff);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
date2 = simpleDateFormat.parse(mBlockon);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
然后我调用如下方法
blockon.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
mBlock = getDifference(date1, date2);
block.setText(mBlock);
}
【问题讨论】:
标签: android android-emulator android-layout