我可以更新runnable中的两个textview吗? 因为我的代码只能更新一个textview。 我得到了这种方法,可以更新包含照片EXIF数据中的地址和日期的2个文本视图。
public void launchRingDialog() {
final ProgressDialog ringProgressDialog = ProgressDialog.show(ReportIncident.this, "Please wait ...", "Rendering Image EXIF Data ...", true);
ringProgressDialog.setCancelable(false);
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(5000);
loadExifData();
r.setDate(mExif.getAttribute(ExifInterface.TAG_DATETIME));
tvLocation.setText(getaddress());
tvTime.setText(r.getStringDate());
r.setLati(Double.parseDouble(mExif.getAttribute(ExifInterface.TAG_GPS_LATITUDE)));
r.setLongi(Double.parseDouble(mExif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE)));
} catch (Exception e) {
}
ringProgressDialog.dismiss();
}
}).start();
}
答案 0 :(得分:1)
您无法在与Android中的UI线程不同的线程中更新UI。要做到这一点,您可以使用的一种简单方法是:
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable(){
tvLocation.setText(getaddress());
tvTime.setText(r.getStringDate());
});