AndroidのAsyncTask面接


AsyncTaskの実行は、4つのステップonPreExecute()に分けられます.このメソッドは、タスクの実行前に呼び出され、ここに進捗ダイアログボックスdoInBackground(Params...)が表示されます.この方法はバックグラウンドスレッドで実行され、タスクの主な作業を完了するのに通常長い時間がかかります.実行中にpublic Progress(Progress...)を呼び出すことができます.タスクの進捗状況を更新します.このメソッドは、メインスレッドで実行され、タスクの実行の進捗状況を表示します.onPostExecute(Result)このメソッドはメインスレッドで実行され、タスク実行の結果、このメソッドのパラメータとしてAsyncTaskの3つの汎用パラメータの説明が返されます(3つのパラメータは任意のタイプです).
1番目のパラメータ:doInBackground()メソッドへのパラメータタイプ2番目のパラメータ:onProgressUpdate()メソッドへのパラメータタイプ3番目のパラメータ:onPostExecute()メソッドへのパラメータタイプ、doInBackground()メソッドへの戻りタイプ
AsyncTaskクラスを使用して、遵守するガイドライン:1、TaskのインスタンスはUI threadで作成する必要があります;2,ExecuteメソッドはUI threadで3を呼び出す必要があります.手動でonPfreexecute()を呼び出さないでください.onPostExecute(result)Doinbackground(params...)、onProgressupdate(progress...)のいくつかのメソッドを呼び出す必要があります.4、taskは一度しか実行できません.そうしないと、複数回呼び出されたときに異常が発生します.AsyncTaskの呼び出しプロセス全体はexecuteメソッドから始まり、メインスレッドでexecuteメソッドを呼び出すと、onpreExecuteメソッドを使用することができます.これは、ここで進捗ボックスを開始することができます.また、onprogressupdateメソッドを使用してユーザーに進捗バーの表示を行い、ユーザー体験を増やすことができます.最後にonpostexecute法によりhandlerがUIを処理する方式に相当し,ここでdoinbackgroundで得られた結果処理操作UIを用いることができる.このメソッドはメインスレッドで実行され、タスクの実行結果はこのメソッドのパラメータとして返されます.
    <uses-permission android:name="android.permission.INTERNET"/>

 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >
    
    <EditText android:id="@+id/urls"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/hint"
        />
    <Button 
        android:id="@+id/load"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/load"/>

    <TextView
        android:id="@+id/txt_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>

 
package com.android.xiong.aysnctasktest;

import java.io.IOException;

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.content.DialogInterface;
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.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {

	Button load;
	EditText url;
	TextView showMessage;
	HttpClient httpClient = new DefaultHttpClient();

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		load = (Button) findViewById(R.id.load);
		url = (EditText) findViewById(R.id.urls);
		showMessage = (TextView) findViewById(R.id.txt_message);
		load.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				PageTask pageTask = new PageTask();
				String urls = url.getText().toString().trim();
				if (!urls.equals("")) {
					pageTask.execute("http://"+urls);
				}
			}
		});
	}

	@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;
	}

	//           doInBackground    
	//          onProgressUpdate    
	//          onPostExecute    
	class PageTask extends AsyncTask<Object, Object, Object> {

		ProgressDialog dialog;

		//            
		@Override
		protected void onPreExecute() {
			dialog = new ProgressDialog(MainActivity.this);
			dialog.setTitle("   ");
			dialog.setMessage("       。。。");
			dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
			dialog.setButton(DialogInterface.BUTTON_NEUTRAL, "  ",
					new DialogInterface.OnClickListener() {
						@Override
						public void onClick(DialogInterface dialog, int which) {
							dialog.cancel();
							//    
							PageTask.this.cancel(true);
						}
					});
			dialog.show();
		}

		//       
		@Override
		protected Object doInBackground(Object... params) {
			HttpGet get = new HttpGet(params[0].toString());
			//   get  
			try {
				HttpResponse response = httpClient.execute(get);
				if (response.getStatusLine().getStatusCode() == 200) {
					//         
					HttpEntity entity = response.getEntity();
					if (entity != null) {
						return EntityUtils.toString(entity);
					}
				}
			} catch (ClientProtocolException e) {
				new RuntimeException(e);
			} catch (IOException e) {
				new RuntimeException(e);
			}
			return null;
		}

		//        
		@Override
		protected void onProgressUpdate(Object... values) {
			super.onProgressUpdate(values);
		}

		//                  result   doInBackgSround(Object... params)    
		@Override
		protected void onPostExecute(Object result) {
			showMessage.setText(result.toString());
			dialog.dismiss();
		}

	}

}