gpt4 book ai didi

android - 如果我在其他线程上阅读 View 是否正确,Android UI

转载 作者:太空狗 更新时间:2023-10-29 16:40:16 25 4
gpt4 key购买 nike

Android 无法在非 ui 线程上直接更新 View ,但如果我只是阅读/获取 ui 的一些信息?

例如我有一个类似 updateModel() 的方法

void updateModel() {
dailyReport.log.setValue(editLog.getText().toString());
dailyReport.plan.setValue(editPlan.getText().toString());
dailyReport.question.setValue(editQuestion.getText().toString());
}

如果我在非ui线程上运行这个方法会不会有问题。

最佳答案

下面的例子帮助我解决了这个问题。希望这对你也有帮助

runOnUiThread(new Runnable() {
@Override
public void run() {
//do your job
}
});

关于android - 如果我在其他线程上阅读 View 是否正确,Android UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18887119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com