您的位置:首页 > 产品设计 > UI/UE

android解决UI阻塞问题——创建AsyncTask 子线程

2011-04-28 13:37 543 查看
view plaincopy to clipboardprint?
package net.blogjava.mobile.wsclient;

import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class Main extends Activity implements OnClickListener
{
private EditText etProductName;
private TextView tvResult;

class WSAsyncTask extends AsyncTask
{
String result = "";
@Override
protected Object doInBackground(Object... params)
{
try
{
String serviceUrl = "http://192.168.17.156:8080/axis2/services/SearchProductService?wsdl";
String methodName = "getProduct";
SoapObject request = new SoapObject("http://service",
methodName);
request.addProperty("productName", etProductName.getText().toString());
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
SoapEnvelope.VER11);
envelope.bodyOut = request;
HttpTransportSE ht = new HttpTransportSE(serviceUrl);

ht.call(null, envelope);
if (envelope.getResponse() != null)
{
SoapObject soapObject = (SoapObject) envelope.getResponse();
result = "产品名称:" + soapObject.getProperty("name") + "/n";
result += "产品数量:" + soapObject.getProperty("productNumber")
+ "/n";
result += "产品价格:" + soapObject.getProperty("price");

}
else
{
result = "无此产品.";
}
}
catch (Exception e)
{
result = "调用WebService错误.";
}
// 必须使用post方法更新UI组件
tvResult.post(new Runnable()
{
@Override
public void run()
{
tvResult.setText(result);

}
});
return null;
}

}
@Override
public void onClick(View view)
{
// 异步执行调用WebService的任务
new WSAsyncTask().execute();
}
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnSearch = (Button) findViewById(R.id.btnSearch);
btnSearch.setOnClickListener(this);
etProductName = (EditText) findViewById(R.id.etProductName);
tvResult = (TextView) findViewById(R.id.tvResult);

}
}


1. 一般需要编写一个AsyncTask的子类来完成后台执行任务的工作。
2. AsyncTask的核心方法是doInBackground,当调用AsyncTask类的execute方法时,doInBackground方法会异步执行。因此,可以将执行任务的代码写在doInBackground方法中。
3. 由于本例中的TextView组件是在主线程(UI线程)中创建的,因此,在其他的线程(doInBackground方法所在的线程)中不能直接更新TextVew组件。为了更新TextView组件,需要使用TextView类的post方法。该方法的参数是一个Runnable对象,需要将更新TextView组件的代码写在Runnable接口的run方法中。
4. 虽然不能在其他线程中更新UI组件,但可以从其他线程直接读取UI组件的值。例如,在doInBackground方法中直接读取了EditText组件的值。
5. 调用AsyncTask类的execute方法后会立即返回。execute方法的参数就是doInBackground方法的参数。doInBackground方法的返回值可以通过AsyncTask.execute(...).get()方法获得。
读者可以将本例中的IP改成其他的值,看看单击按钮后,是否还可在文本框中输入其他的内容。如果这个IP是正确的,并且WebService可访问,那么会在TextView组件中输出相应的返回值。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: