Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android異步任務學習筆記

android異步任務學習筆記

編輯:關於Android編程

android異步任務可以很方便的完成耗時操作並更新UI,不像多線程還要利用消息隊列,子線程發消息給主線程,主線程才能更新UI。總之,android異步任務把多線程的交互進行進一步的封裝,用起來跟方便。

如下是異步任務demo代碼:

完成異步下載圖片,更新界面。

package com.example.android_async_task2;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

import android.app.Activity;
import android.app.ProgressDialog;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;

public class MainActivity extends Activity {
private Button btn=null;
private ImageView image=null;
private String image_path="http://f2.sjbly.cn/m13/0729/1459/6947edn_690x459_b.jpg";
private ProgressDialog dialog;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		btn=(Button)this.findViewById(R.id.button1);
		dialog=new ProgressDialog(this);
		dialog.setTitle("提示信息");
		dialog.setMessage("下載中,請稍等......");
		//設置進度條的樣式
		dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
		//屏幕不失去焦點
		dialog.setCancelable(false);
		image=(ImageView)this.findViewById(R.id.imageView1);
		btn.setOnClickListener(new OnClickListener(){

			@Override
			public void onClick(View v) {
				new MyTask().execute(image_path);
				
			}
			
			
		});
	}

	public class MyTask extends AsyncTask
	{
		@Override
		protected void onPreExecute() {
			dialog.show();
			super.onPreExecute();
		}
		
		@Override
		protected Bitmap doInBackground(String... params) {
			//定義一個內存流,不需要關閉
			ByteArrayOutputStream out= new ByteArrayOutputStream();
			//定義一個輸入流
			InputStream in=null;
			Bitmap bitmap=null;
			//通過HttpClient類獲取網絡資源
			HttpClient httpClient=new DefaultHttpClient();
			//設置請求方式(注意請求地址URL要寫入!!!)
			HttpGet httpGet=new HttpGet(params[0]);
			
			try {
				//獲得請求狀態
				HttpResponse httpResponse=httpClient.execute(httpGet);
				//判斷請求狀態結果碼
				if(httpResponse.getStatusLine().getStatusCode()==200)
				{
					/*//通過一個實體類獲得響應的實體
					HttpEntity httpEntity=httpResponse.getEntity();
					//通過一個實體工具類獲得實體的字節數組
					byte[]data=EntityUtils.toByteArray(httpEntity);
					//通過工廠類創建Bitmap對象
					BitmapFactory.decodeByteArray(data, 0, data.length);*/
					//獲得輸入流
					in=httpResponse.getEntity().getContent();
					//獲得文件的總長度
					long file_length=httpResponse.getEntity().getContentLength();
					//計算總長度
					int total_len=0;
					int len=0;
					byte[] buffer=new byte[1024];
					try{
						while((len=in.read(buffer))!=-1)
						{
							total_len+=len;
							//刻度計算公式
							int value=(int)(total_len/((float)file_length)*100);
							//發布進度條的刻度
							publishProgress(value);
							//寫入輸出流
							out.write(buffer, 0, len);
							
						}
						//內存輸出流轉換成字節數組
						bitmap=BitmapFactory.decodeByteArray(out.toByteArray(), 0, out.toByteArray().length);
					}catch(Exception e)
					{
						
					}finally{
						if(in!=null)
						{
							in.close();
						}
					}
					
				
				
					
				}
			} catch (ClientProtocolException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			return bitmap;
		}
	
		@Override
		protected void onPostExecute(Bitmap result) {
			
			super.onPostExecute(result);
			image.setImageBitmap(result);
			dialog.dismiss();
		}

		
		

		@Override
		protected void onProgressUpdate(Integer... values) {
			
			super.onProgressUpdate(values);
			dialog.setProgress(values[0]);
		}

		
		
	}
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}
其中
publishProgress(value);
是可以發送幾個對象給
onProgressUpdate()方法的。

DEMO下載:http://download.csdn.net/detail/u014600432/8175337

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved