Only the original thread that created a view hierarchy can touch its views.
时间: 2023-08-10 08:59:23 浏览: 56
Android studio :后台修改前台界面Only the original thread that created a view hierarchy can touch its views
这个错误信息意思是只有创建了一个视图层级结构的原始线程才能触碰(修改)它的视图。也就是说,如果其他线程尝试修改此视图层次结构中的视图,就会出现这个错误。
通常,在Android开发中,UI组件只能在创建它们的主线程中进行更新。如果你想在其他线程中更新UI组件,你需要使用相关的线程间通信技术,例如Handler或者runOnUiThread方法来在UI线程上执行更新操作。
阅读全文