public abstract class
AsyncTask
extends Object
java.lang.Object
↳ android.os.AsyncTask<Params, Progress, Result>
Class Overview
AsyncTask enables proper and easy use of the UI thread. This class allows to perform background operations and publish results on the UI thread without having to manipulate threads and/or handlers.
An asynchronous task is defined by a computation that runs on a background thread and whose result is published on the UI thread. An asynchronous task is defined by 3 generic types, called Params, Progress and Result, and 4 steps, called begin, doInBackground, processProgress and end.
Usage
AsyncTask must be subclassed to be used. The subclass will override at least one method (doInBackground(Params...)), and most often will override a second one (onPostExecute(Result).)
Here is an example of subclassing:
private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
protected Long doInBackground(URL... urls) {
int count = urls.length;
long totalSize = 0;
for (int i = 0; i < count; i++) {
totalSize += Downloader.downloadFile(urls[i]);
publishProgress((int) ((i / (float) count) * 100));
}
return totalSize;
}
protected void onProgressUpdate(Integer... progress) {
setProgressPercent(progress[0]);
}
protected void onPostExecute(Long result) {
showDialog("Downloaded " + result + " bytes");
}
}
Once created, a task is executed very simply:
new DownloadFilesTask().execute(url1, url2, url3);
AsyncTask's generic types
The three types used by an asynchronous task are the following:
1.Params, the type of the parameters sent to the task upon execution.
2.Progress, the type of the progress units published during the background computation.
3.Result, the type of the result of the background computation.
Not all types are always used by an asynchronous task. To mark a type as unused, simply use the type Void:
private class MyTask extends AsyncTask<Void, Void, Void> { ... }
The 4 steps
When an asynchronous task is executed, the task goes through 4 steps:
1.onPreExecute(), invoked on the UI thread immediately after the task is executed. This step is normally used to setup the task, for instance by showing a progress bar in the user interface.
2.doInBackground(Params...), invoked on the background thread immediately after onPreExecute() finishes executing. This step is used to perform background computation that can take a long time. The parameters of the asynchronous task are passed to this step. The result of the computation must be returned by this step and will be passed back to the last step. This step can also use publishProgress(Progress...) to publish one or more units of progress. These values are published on the UI thread, in the onProgressUpdate(Progress...) step.
3.onProgressUpdate(Progress...), invoked on the UI thread after a call to publishProgress(Progress...). The timing of the execution is undefined. This method is used to display any form of progress in the user interface while the background computation is still executing. For instance, it can be used to animate a progress bar or show logs in a text field.
4.onPostExecute(Result), invoked on the UI thread after the background computation finishes. The result of the background computation is passed to this step as a parameter
分享到:
相关推荐
最后,从Android 3.0(API Level 11)开始,AsyncTask的执行策略有所改变,不再保证所有的任务都会在同一线程中执行,而是采用了串行执行的方式,以避免过多的并发导致的问题。而在Android 9.0(API Level 28)之后...
自 Android 3.0(API 级别 11)起,系统提供了并行执行器(ParallelExecutor),但需要开发者手动设置。 - **Executor**:AsyncTask 内部维护了一个 Executor 实例,用于调度任务的执行。默认的 SerialExecutor ...
注意,Android 3.0(API级别11)以上版本,由于内存管理的变化,`AsyncTask`可能会在Activity被销毁时被回收,从而导致内存泄漏。为避免这个问题,可以使用弱引用或者在`onPause()`中取消正在执行的任务。 此外,...
此外,从Android 3.0(API级别11)开始,`AsyncTask`的执行策略有所改变,多个相同`AsyncTask`实例可能会并发执行,而非按顺序执行,因此在高版本Android中应特别注意这一点。 总的来说,`AsyncTask`是Android...
3. **版本兼容性**:自Android 3.0(API级别11)开始,AsyncTask默认在单独的后台线程上执行,而在更低版本的Android系统上,它会在UI线程的Looper中执行。这意味着在旧版本的Android系统上,你需要自行处理线程和...
- 自Android 3.0(API级别11)起,`AsyncTask`的默认执行策略变为序列化,即同一时间仅允许一个`AsyncTask`执行。如果需要并行执行,需手动设置`AsyncTask.THREAD_POOL_EXECUTOR`。 - 避免在`doInBackground()`方法...
自Android 3.0(API Level 11)起,AsyncTask默认在序列化模式下运行,这意味着同一时间只有一个AsyncTask实例可以执行。在Android 4.0(API Level 14)后,可以使用`executeOnExecutor()`方法选择线程池执行,提高...
3. **版本兼容性**:自Android 3.0(API级别11)起,AsyncTask默认在单独的线程池中执行,而在更早的版本中,它们是在SerialExecutor中顺序执行的。这意味着在旧版本设备上,多个AsyncTask会按照启动顺序依次执行。 ...
此外,由于Android API 11以上版本对AsyncTask进行了调整,同一个App实例中,同一时间只能有固定数量的AsyncTask在后台运行,因此在处理大量图片加载时,可能需要使用更复杂的机制,如使用LoaderManager、 Fresco、...
另外,从Android 3.0(API级别11)开始,AsyncTask的执行默认是在序列化的,意味着同一时间只能有一个AsyncTask实例在运行。如果需要并发执行多个任务,可以重写`executeOnExecutor()`方法指定`THREAD_POOL_EXECUTOR...
3. **版本兼容**:自Android 3.0(API级别11)开始,`AsyncTask`默认在一个后台线程池中执行,而在更早的版本中,它们是在序列化的。在使用`AsyncTask`时,需要考虑兼容性问题。 4. **内存管理**:`AsyncTask`的...
不过,需要注意的是,从Android 3.0(API Level 11)开始,`AsyncTask`的执行受到限制,可能不再在单独的线程中运行,因此在高版本系统上可能需要配合`Executor`使用,或者考虑使用其他的异步处理库,如`LiveData`、...
注意,Android 6.0(API 23)之后,系统对网络操作进行了限制,需要在运行时申请`INTERNET`权限。此外,由于`AsyncTask`的生命周期与Activity绑定,当Activity被销毁时,正在执行的`AsyncTask`可能引发内存泄漏,...
在Android应用开发中,Handler、AsyncTask和异步加载是三个关键的概念,它们主要...在实际开发中,根据具体场景选择合适的方法,同时关注Android API的变化,适时引入新的异步处理工具,是保持代码高效、稳定的关键。
- 自API 11起,Android推荐使用`Loader`框架处理数据加载。 - 对于更复杂的后台任务,可以使用`IntentService`或者`JobScheduler`。 - 使用现代的异步库,如Retrofit、Coroutines、LiveData+ViewModel等。 理解...
请注意,Android从API 11开始推荐使用`Executor`和`IntentService`来替代`AsyncTask`,因为`AsyncTask`在多线程处理和内存管理上存在一些问题。但如果你的项目支持的最低API版本较低,`AsyncTask`仍然是一个可行的...
- Android 3.0(API 11)之后,如果Activity被销毁,AsyncTask可能会抛出异常。因此,需要在Activity的`onDestroy()`中取消正在执行的AsyncTask,以防止内存泄漏。 - 由于AsyncTask内部维护了一个线程池,大量并发...
- 自Android 3.0(API 11)开始,AsyncTask默认是在一个串行队列中执行的,这意味着同一时间只能有一个任务在运行。如果你需要并发执行多个任务,可以使用`executeOnExecutor()`方法并传入`AsyncTask.THREAD_POOL_...
此外,Android的AsyncTask有版本差异,从Android 3.0(API级别11)开始,AsyncTask默认改为单线程模式,避免了并发执行导致的问题,但在处理大量并发任务时,可能会降低性能。因此,在处理大量并发任务时,开发者...
- **版本兼容性**:自Android 3.0(API级别11)开始,AsyncTask默认在后台线程池执行,而在更早的版本中则在线程池中。在低版本设备上使用时需注意。 通过分析这个"AsyncTaskTest",开发者可以学习如何在Android中...