Is it right if I read view on other thread,Android UI
Anroid can't update view direct on non-ui thread,but if I just read/get
some information for ui?
For example I have a method updateModel() like
void updateModel() {
dailyReport.log.setValue(editLog.getText().toString());
dailyReport.plan.setValue(editPlan.getText().toString());
dailyReport.question.setValue(editQuestion.getText().toString());
}
Is it a problem if I run this method on non-ui thread.
No comments:
Post a Comment