Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何从 MainActivity 类中的线程访问视图。我需要能够在收集信息时每 5 秒将信息附加到表中。当函数位于 a 中时,我将如何执行此操作Thread()?
Thread()
谢谢。
创建一个 Hanlder 作为字段并在您的活动的 onCreate 中对其进行初始化。然后用那个 Hanlder 访问 UI 线程。即访问视图
或者简单地使用
runOnUiThread(new Runnable() { public void run() { //code needs to be ran in UI thread) } });