因为我已经将我的 Eclipse 项目导入到 Android Studio,所以我遇到了有关 bringToFront() 方法的错误。
protected Void doInBackground(String... num_t) {
planningTitle = (TextView) findViewById(R.id.planningTitle);
planningTitle.bringToFront(); /* Bring Planning Title in front of Table Layout */
/* Plubish the result to update Layout */
publishProgress(num_t[0]);
return null;
}
我看到了一些关于 getText() 方法的类似问题并理解了它们,但我不知道如何处理这个 bringToFront() 方法。
错误:必须从 UI 线程调用方法 bringToFront,当前推断的线程是工作线程...
无论如何,该项目正在编译,但我很想知道我的错误在哪里。
提前致谢。C。