今晚无聊,写了个AsyncTask异步下载任务;
继承AsyncTask需要实现几种方法:onPreExecute、doInBackground、onProgressUpdate、onPostExecute
分别是:开始前执行、后台任务执行、进度更新、执行完毕。
以下是MainActivity.java中onCreate()方法中的代码:
Button down = (Button)findViewById(R.id.down);
final ProgressBar pbr = (ProgressBar)findViewById(R.id.progressBar);
近期评论