Android:无法找到Looper.quit()

时间:2010-10-08 09:44:17

标签: android loops

标题解释了这一切。我有一个扩展AsyncTask的类。我使用新的classname.execute()直接在主线程中调用它。

现在在doInBackground(params)中我有Looper.prepare。 由于我收到错误“每个线程只能创建一个Looper”,我需要在其中使用Looper.quit()。但是当我写Looper.quit();

时,我无法在Looper类中找到它

那么如何使用这个退出函数

1 个答案:

答案 0 :(得分:4)

你必须调用Looper.myLooper()。quit()