android开发AsyncTask异步任务实例

今晚无聊,写了个AsyncTask异步下载任务;

继承AsyncTask需要实现几种方法:onPreExecute、doInBackground、onProgressUpdate、onPostExecute

分别是:开始前执行、后台任务执行、进度更新、执行完毕。

以下是MainActivity.java中onCreate()方法中的代码:

Button down = (Button)findViewById(R.id.down);
final ProgressBar pbr = (ProgressBar)findViewById(R.id.progressBar);

 
Copyright © 2008-2021 lanxinbase.com Rights Reserved. | 粤ICP备14086738号-3 |