android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi
得意犹堪夸世俗,诏黄新湿字如鸦。这篇文章主要讲述android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi相关的知识,希望能为你提供帮助。
前言:昨天试着用okhttp来请求网络并显示数据,所以很不幸:
文章图片
但是又很幸运,我很快找到了解决方法。
this.getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
//更新UI}
});
再来探究一下为什么这么做:
【android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi】这个bug出现的原因是不能在子线程更新UI,UI线程不允许其它线程更新UI组件中的内容。
所以上述是一种通过子线程更新UI的方式。如果主类是Activity的话就可以(类名.this.runOnUiThread())。但是我这个是Fragment,所以要获取到Activity,
即this.getActivity(),然后再调用runOnUiThread()方法。
推荐阅读
- Android Studio解决Error:moudle not specified
- 安卓记事本小程序开发
- Android Studiio安装
- 关于app.use('/static', express.static(path.join(__dirname, 'public')))的理解
- Android基础——基本UI控件()
- Windows 8中通过TCP/IP禁用NetBIOS
- 已解决(Can’t locate IO/Socket/SSL.pm in @INC)
- 已解决(configure: error: MySQL library not found)
- 通过这六个网站从Web浏览器运行Linux