为什么 AsyncTask 实例必须在UI线程里创建?

本文探讨了为何AsyncTask实例需要在UI线程创建并执行execute方法的原因。通过分析源码,揭示了AsyncTask内部使用Handler进行线程间通信,确保onPreExecute、onProgressUpdate和onPostExecute等方法在主线程中执行,从而能够更新UI。同时,介绍了AsyncTask的执行流程,包括onPreExecute、doInBackground、onProgressUpdate和onPostExecute的调用顺序和作用。
摘要由CSDN通过智能技术生成

AsyncTask作为基础的多线程通信方案,在实际开发中广泛的使用。
具体的使用方式,在此不在过多说明,如果您不知道,请找度娘。
查到的资料中大多有类似的注意点:

  1. Task的实例必须在UI thread中创建
  2. execute方法必须在UI thread中调用
  3. 不要手动的调用onPreExecute(), onPostExecute(Result),doInBackground(Params…), onProgressUpdate(Progress…)这几个方法
  4. 该task只能被执行一次,否则多次调用时将会出现异常

那么大家是否想过 为什么 AsyncTask 实例需要在UI thread中创建,execute方法必须在UI thread中调用?
无他,为UI更新耳~

我们知道更新UI需要在主线程中进行,而在AsyncTask的众多方法中,有很多方法,可能涉及到UI的更新,如:onPreExecute(),onProgressUpdate(),onPostExecute(), onCancelled 。
下面我们一起来看一下对应的方法定义及注释文档

  • onPreExecute
    /**
     * Runs on the UI thread before {@link #doInBackground}.
     *
     * @see #onPostExecute
     * @see #doInBackground
     */
    protected void onPreExecute() {
    }

说明:
onPreExecute方法在doInBackground(一般用来写耗时流程如:Http请求)前调用,通常情况下,通过覆盖( @Override) 此方法来显示空的进度条(在需要显示进度的情况下)

  • onProgressUpdate
    /**
     * Runs on the UI thread after {@link #publishProgress} is invoked.
     * The specified values are the values passed to {@link #publishProgress}.
     *
     * @param values The values indicating progress.
     *
     * @see #publishProgress
     * @see #doInBackground
     */
    @SuppressWarnings({
  "UnusedDeclaration"})
    protected void onProgressUpdate(Progress... values) {
    }

说明:
onProgressUpdate的作用为显示处理进度,通常情况下,在doInBackground中触发,通过调用publishProgress(会回调onProgressUpdate更新UI)推送进度,在onProgressUpdate中更新UI。

  • onPostExecute
    /**
     * <p>Runs on the UI thread after {@link #doInBackground}. The
     * specified result is the value returned by {@link #doInBackground}.</p>
     * 
     * <p>This method won't be invoked if the task was cancelled.</p>
     *
     * @param result The result of the operation computed by {@link #doInBackground}.
     *
     * @see #onPreExecute
     * @see #doInBackground
     * @see #onCancelle
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值