在開發Android應用時必須遵守單執行緒模式的原則: Android UI操作並不是安全執行緒的並且這些操作必須在UI線程中執行。在單執行緒模式中始終要記住兩條法則:
1. 不要阻塞UI線程
2. 確保只在UI線程中訪問Android UI工具包
當一個程式第一次啟動時,Android會同時啟動一個對應的主線程(Main Thread),主線程主要負責處理與UI相關的事件,如:使用者的按鍵事件,使用者接觸螢幕的事件以及螢幕繪圖事件,並把相關的事件分發到對應的組件進行處理。所以主線程通常又被叫做UI線程。
比如說從網上擷取一個網頁,在一個TextView中將其原始碼顯示出來,這種涉及到網路操作的程式一般都是需要開一個線程完成網路訪問,但是在獲得頁面源碼後,是不能直接在網路操作線程中調用TextView.setText()的.因為其他線程中是不能直接存取主UI線程成員
Android提供了幾種在其他線程中訪問UI線程的方法:
Activity.runOnUiThread( Runnable )
View.post( Runnable )
View.postDelayed( Runnable, long )
Hanlder
這些類或方法同樣會使你的代碼很複雜很難理解。然而當你需要實現一些很複雜的操作並需要頻繁地更新UI時這會變得更糟糕。
為瞭解決這個問題,Android 1.5提供了一個工具類:AsyncTask
它使建立需要與使用者介面互動的長時間啟動並執行任務變得更簡單,不需要藉助線程和Handler即可實現。
AsyncTask是抽象類別,它定義了三種泛型型別: Params,Progress,Result
Params 啟動任務執行的輸入參數,比如HTTP請求的URL。
Progress 背景工作執行的百分比。
Result 後台執行任務最終返回的結果,比如String。
AsyncTask的執行分為四個步驟,每一步都對應一個回調方法,這些方法不應該由應用程式調用(即使用者不可直接調用,而應由系統調用),開發人員需要做的就是實現這些方法。
1) 子類化AsyncTask
2) 實現AsyncTask中定義的下面一個或幾個方法
(a)onPreExecute(), 該方法將在執行實際的後台操作前被UI thread調用。可以在該方法中做一些準備工作,如在介面上顯示一個進度條。
(b)doInBackground(Params...), 將在onPreExecute 方法執行後馬上執行,該方法運行在後台線程中。這裡將主要負責執行那些很耗時的後台計算工作。可以調用 publishProgress方法來更新即時的任務進度。該方法是抽象方法,子類必須實現。
(c)onProgressUpdate(Progress...),在publishProgress方法被調用後,UI thread將調用這個方法從而在介面上展示任務的進展情況,例如通過一個進度條進行展示。
(d)onPostExecute(Result), 在doInBackground 執行完成後,onPostExecute 方法將被UI thread調用,背景計算結果將通過該方法傳遞到UI thread.
為了正確的使用AsyncTask類,以下是幾條必須遵守的準則:
1) Task的執行個體必須在UI thread中建立
2) execute方法必須在UI thread中調用
3) 不要手動的調用onPreExecute(), onPostExecute(Result),doInBackground(Params...), onProgressUpdate(Progress...)這幾個方法
4) 該task只能被執行一次,否則多次調用時將會出現異常
AsyncTask樣本:
從網上擷取一個網頁,在一個TextView中將其原始碼顯示出來
/** * * @author yanggang * @see http://blog.csdn.net/sunboy_2050 */public class MainActivity extends Activity {private EditText metURL;private TextView mtvPage;private Button mbtnConn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); metURL = (EditText)findViewById(R.id.etURL);// 輸入網址 mbtnConn = (Button)findViewById(R.id.btnConn);// 串連網站 mtvPage = (TextView)findViewById(R.id.tvPage);// 顯示網頁 mbtnConn.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {connURL();}}); } private void connURL(){ URLTask urlTask = new URLTask(this);// 執行個體化抽象AsyncTask urlTask.execute(metURL.getText().toString().trim());// 調用AsyncTask,傳入url參數 } /** 繼承AsyncTask的子類,下載url網頁內容 */ class URLTask extends AsyncTask<String, Integer, String> { ProgressDialog proDialog; public URLTask(Context context) { proDialog = new ProgressDialog(context, 0); proDialog.setButton("cancel", new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) {dialog.cancel();}}); proDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {@Overridepublic void onCancel(DialogInterface dialog) {finish();}}); proDialog.setCancelable(true); proDialog.setMax(100); proDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); proDialog.show(); } @Override protected void onPreExecute(){ mtvPage.setText(R.string.hello_world);// 可以與UI控制項互動 } @Overrideprotected String doInBackground(String... params) {// 在後台,下載url網頁內容try {HttpGet get = new HttpGet(params[0]);// urlHttpResponse response = new DefaultHttpClient().execute(get);if(response.getStatusLine().getStatusCode() == 200) {// 判斷網路連接是否成功//String result = EntityUtils.toString(response.getEntity(), "gb2312");// 擷取網頁內容//return result;HttpEntity entity = response.getEntity();long len = entity.getContentLength();// 擷取url網頁內容總大小InputStream is = entity.getContent();ByteArrayOutputStream bos = new ByteArrayOutputStream();byte[] buffer = new byte[1024];int ch = -1;int count = 0;// 統計已下載的url網頁內容大小while(is != null && (ch = is.read(buffer)) != -1 ) {bos.write(buffer, 0, ch);count += ch;if(len > 0) {float ratio = count/(float)len * 100;// 計算下載url網頁內容百分比publishProgress((int)ratio);// android.os.AsyncTask.publishProgress(Integer... values)}Thread.sleep(100);}String result = new String(bos.toString("gb2312"));return result;}} catch (Exception e) {e.printStackTrace();}return null;}@Overrideprotected void onProgressUpdate(Integer... values) {// 可以與UI控制項互動mtvPage.setText("" + values[0]);// 擷取 publishProgress((int)ratio)的valuesproDialog.setProgress(values[0]);}@Overrideprotected void onPostExecute(String result) {// 可以與UI控制項互動mtvPage.setText(result);proDialog.dismiss();} }}
註: 最後別忘記在AndroidManefest.xml 添加網路存取權限
<uses-permission android:name="android.permission.INTERNET" />
運行結果:
源碼下載
參考推薦:
AsyncTask的用法
Android 進程和執行緒模式
Android AsyncTask與handler
Android實現計時與倒計時的幾種方法