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.
我不能在线程内执行此操作有什么原因吗?我仍然收到“无法在未调用 Looper.prepare() 的线程内创建处理程序”。
_currentActivity.runOnUiThread(new Runnable() { public void run() { _currentActivity.setContentView(_nextScreen); } });
您不能UI在非UI线程上更新作品。
UI
如果您希望更新UI到用户,您必须需要实现Handler或任一UI线程。
Handler