We can see this error when we try to change the Ui tookit in Thread not Ui thread.
W/System.err: android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
W/System.err: at android.view.ViewRootImpl.checkThread(ViewRootImpl.java:7334)
I just wondering about standard of Ui toolkit.
I thought that every view is a Ui tookit. But I set text to a TextView in another thread, the error was not occurred. (The TextView is not appeared in the layout of MainActivity)
So, is it right the error is occured that the Ui component is changed in layout of current Activity?