android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi

Posted 听弦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi相关的知识,希望对你有一定的参考价值。

前言:昨天试着用okhttp来请求网络并显示数据,所以很不幸:

但是又很幸运,我很快找到了解决方法。

this.getActivity().runOnUiThread(new Runnable() {
            @Override
            public void run() {
                //更新UI

            }
        });

再来探究一下为什么这么做:

这个bug出现的原因是不能在子线程更新UI,UI线程不允许其它线程更新UI组件中的内容。
所以上述是一种通过子线程更新UI的方式。如果主类是Activity的话就可以(类名.this.runOnUiThread())。但是我这个是Fragment,所以要获取到Activity,
即this.getActivity(),然后再调用runOnUiThread()方法。

以上是关于android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi的主要内容,如果未能解决你的问题,请参考以下文章

android.view.WindowManager$BadTokenException: Unable to add window android.view.ViewRootImpl$W@e48ad

Android Studio:Unable to add window android.view.ViewRootImpl$W@5e2d85a -- permission denied for thi

android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a vi

android.view.WindowManager$BadTokenException

Android 底层渲染 - 屏幕刷新机制源码分析

Android 按键 播放视频时,拦截上下键事件