最佳答案
在 UI 中,为了执行一些后台工作,我使用了一个单独的 Thread
。但是正如其他人建议的那样,我现在使用的是 AsyncTask
。
Thread
和 AsyncTask
的主要区别是什么?
在哪种情况下,我应该使用 Thread
还是 AsyncTask
?