展会信息港展会大全

关于AsyncTask中的cancel方法
来源:互联网   发布日期:2016-01-14 12:38:48   浏览:2494次  

导读:在这里总结一下:文 档地址Cancelling a taskA task can be cancelled at any time by invoking cancel(boolean) Invoking this method will cause subsequent calls to isCancelled() t ...

在这里总结一下:

文 档地址

Cancelling a task

A task can be cancelled at any time by invoking cancel(boolean). Invoking this method will cause subsequent calls to isCancelled() to return true. After invoking this method, onCancelled(Object), instead of onPostExecute(Object) will be invoked after doInBackground(Object[]) returns. To ensure that a task is cancelled as quickly as possible, you should always check the return value of isCancelled() periodically from doInBackground(Object[]), if possible (inside a loop for instance.)

这是话意思是

我们可以随时调用 cancel(boolean)去取消这个加载任务,调用这个方法会间接调用 iscancelled 并且返回true 。

当调用cancel()后,在doInBackground()return后 我们将会调用onCancelled(Object) 不在调用onPostExecute(Object)

为了保证任务更快取消掉,你应该在doInBackground()周期性的检查iscancelled 去进行判断。

**注意,我们的oncancel和onPostExecute一样,都是在UI线程中执行。。。所以当我们想要取消之后,有些界面变化 我们可以在oncancel里面改变UI.

关于cancel方法

public final boolean cancel (boolean mayInterruptIfRunning)

Attempts to cancel execution of this task. This attempt will fail if the task has already completed, already been cancelled, or could not be cancelled for some other reason. If successful, and this task has not started when cancel is called, this task should never run. If the task has already started, then the mayInterruptIfRunning parameter determines whether the thread executing this task should be interrupted in an attempt to stop the task.

某些情况下,我们调用cancel(true)可能就会失效

比如 :task已经加载完成,或者 已经取消过一次,或者是其他情况

赞助本站

人工智能实验室

相关热词: AsyncTask cancel

AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港