我有一个主类 A,我从中创建一个对象到扩展 Asynctask 的 B 类。在 A 中设置了内容视图。现在在 B 的 doInBackground 中,我想更新 A 的 textView,但它给出
Caused by: android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
例外。我也尝试在 B 中声明 setcontentview,但没有用,谁能告诉如何在 B 中编辑 A 的 textview?