Answers for "android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views."

4

android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.

GlobalScope.launch {
    //You can use for background procces
    withContext(Dispatchers.Main) {
        // And Update Ui here
    }
}
Posted by: Guest on July-12-2021

Code answers related to "android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views."

Browse Popular Code Answers by Language