android 開發-AsyncTask異步任務的實現

  •  AsyncTask實現的原理,和適用的優缺點

    AsyncTask,是android提供的輕量級的異步類,能夠直接繼承AsyncTask,在類中實現異步操做,提供接口反饋當前異步執行的程度(能夠經過接口實現UI進度更新),最後反饋執行的結果給UI主線程.java

  如下部分是學習代碼:android

    UI:apache

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingBottom="@dimen/activity_vertical_margin"
 6     android:paddingLeft="@dimen/activity_horizontal_margin"
 7     android:paddingRight="@dimen/activity_horizontal_margin"
 8     android:paddingTop="@dimen/activity_vertical_margin"
 9     tools:context=".MainActivity" >
10 
11     <ImageView
12         android:id="@+id/imageView1"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:maxWidth="750dp"
16         android:maxHeight="400dp"
17         android:adjustViewBounds="true"
18          />
19 
20     <Button
21         android:id="@+id/button1"
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_alignParentBottom="true"
25         android:layout_centerHorizontal="true"
26         android:layout_marginBottom="68dp"
27         android:text="下載網絡圖片" />
28 
29 
30 </RelativeLayout>

    Activity:網絡

    

  1 package com.example.android_asynctask_downloadimage;
  2 
  3 import java.io.ByteArrayOutputStream;
  4 import java.io.IOException;
  5 import java.io.InputStream;
  6 
  7 import org.apache.http.HttpResponse;
  8 import org.apache.http.client.HttpClient;
  9 import org.apache.http.client.methods.HttpGet;
 10 import org.apache.http.impl.client.DefaultHttpClient;
 11 
 12 import android.app.Activity;
 13 import android.app.ProgressDialog;
 14 import android.graphics.Bitmap;
 15 import android.graphics.BitmapFactory;
 16 import android.os.AsyncTask;
 17 import android.os.Bundle;
 18 import android.view.Menu;
 19 import android.view.View;
 20 import android.widget.Button;
 21 import android.widget.ImageView;
 22 
 23 /**
 24  * @author xiaowu
 25  * NOTE:異步任務AsyncTask
 26  */
 27 public class MainActivity extends Activity {
 28     private Button button ;
 29     private Button button2 ;
 30     private ImageView imageView ;
 31     private final String IMAGE_PATH ="http://e.hiphotos.baidu.com/zhidao/pic/item/c2fdfc039245d68858f1c69fa5c27d1ed21b241d.jpg";
 32     private ProgressDialog progressDialog ;
 33     @Override
 34     protected void onCreate(Bundle savedInstanceState) {
 35         super.onCreate(savedInstanceState);
 36         setContentView(R.layout.activity_main);
 37         button = (Button) this.findViewById(R.id.button1);
 38         progressDialog = new ProgressDialog(MainActivity.this);
 39         progressDialog.setTitle("提示");
 40 //        progressDialog.setCancelable(false);
 41         progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
 42         progressDialog.setMessage("正在下載圖片,請耐心等待...");
 43         
 44         imageView = (ImageView) this.findViewById(R.id.imageView1);
 45         button.setOnClickListener(new View.OnClickListener() {
 46             @Override
 47             public void onClick(View v) {
 48                 // TODO Auto-generated method stub
 49                 new MyTask().execute(IMAGE_PATH);
 50             }
 51         });
 52         
 53     }
 54     /**
 55      * @author xiaowu
 56      * 異步任務AsyncTask,執行網絡下載圖片
 57      * AsyncTask<String,  Integer, byte[]>    若是異步任務不須要參數傳遞,能夠直接將參數設置爲Void
 58      *      params:    
 59      *         String:(網絡圖片的)路徑    
 60      *         Integer: 進度單位,刻度類型
 61      *         byte[]:異步任務執行的返回結果
 62      * 異步任務有4個步驟:
 63      *         一、onPreExecute();    在異步任務執行以前執行,用來構建一個異步任務,如顯示一個進度條給用戶看
 64      *          二、doInBackground(Params...);    異步任務必須實現的方法,具體的異步任務所作的事情
 65      *        三、onProgressUpdate(Progress...);
 66      *      四、onPostExecute(Result);
 67      */
 68     public class MyTask extends AsyncTask<String,  Integer, byte[]>{
 69         //在異步任務執行以前執行,用來構建一個異步任務,如顯示一個進度條給用戶看
 70         @Override
 71         protected void onPreExecute() {
 72             // TODO Auto-generated method stub
 73             super.onPreExecute();
 74             //展現進度條對話框
 75             progressDialog.show();
 76         }
 77         //異步任務必須實現的方法,具體的異步任務所作的事情。並將結果返回值最後一個步驟。
 78         @Override
 79         protected byte[] doInBackground(String... params) {
 80             // TODO Auto-generated method stub
 81             //
 82             HttpClient httpClient = new DefaultHttpClient();
 83             HttpGet httpGet = new HttpGet(params[0]);
 84             InputStream inputStream = null; 
 85             byte[] result = null;    //圖片的全部內容
 86             ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
 87             try {
 88                 //發起get請求,並獲取反饋
 89                 HttpResponse httpResponse = httpClient.execute(httpGet);
 90                 long file_length = httpResponse.getEntity().getContentLength();    //文件實際總長度
 91                 int total_length = 0 ;
 92                 byte[] data = new byte[1024];
 93                 int len = 0 ;
 94                 if (httpResponse.getStatusLine().getStatusCode()==200) {
 95 //                    result = EntityUtils.toByteArray(httpResponse.getEntity());
 96                     //讀取返回內容(內容是以流的形式返回)
 97                     inputStream = httpResponse.getEntity().getContent();
 98                     //更新進度條並讀取數據
 99                     while ((len = inputStream.read(data)) != -1) {
100                         total_length +=len ;
101                         int progress_value = (int) ((total_length/ (float) file_length)*100);
102                         //經過publishProgress()方法發佈進度值到onProgressUpdate
103                         publishProgress(progress_value);    //發佈刻度單位
104                         byteArrayOutputStream.write(data, 0, len);
105                     }
106                 }
107                 result = byteArrayOutputStream.toByteArray();
108             }catch (IOException e) {
109                 // TODO Auto-generated catch block
110                 e.printStackTrace();
111             }finally{
112                 //關鏈接
113                 httpClient.getConnectionManager().shutdown();
114             }
115             
116             return result;
117         }
118         //更新UI展現信息:如進度條的變更
119         @Override
120         protected void onProgressUpdate(Integer... values) {
121             // TODO Auto-generated method stub
122             super.onProgressUpdate(values);
123             progressDialog.setProgress(values[0]);
124         }
125         //將doInBackground的執行結果展現到UI
126         @Override
127         protected void onPostExecute(byte[] result) {
128             // TODO Auto-generated method stub
129             super.onPostExecute(result);
130             Bitmap bitmap = BitmapFactory.decodeByteArray(result, 0, result.length);
131             imageView.setImageBitmap(bitmap);
132             progressDialog.dismiss();
133         }
134         
135     }
136     @Override
137     public boolean onCreateOptionsMenu(Menu menu) {
138         // Inflate the menu; this adds items to the action bar if it is present.
139         getMenuInflater().inflate(R.menu.main, menu);
140         return true;
141     }
142 
143 }
相關文章
相關標籤/搜索