在我的一个项目中,我loopj asynchttpclient
用于与我的网站进行通信。沟通部分运作良好并得到回应
我的活动看起来像
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
WebRequest test=new WebRequest();
test.callService();
}
WebRequest 类为
public class WebRequest extends Activity {
public void callService(){
AsyncHttpClient client = new AsyncHttpClient();
client.post("http://domain.com/dp/index.php", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(String response) {
Log.v("P",response);
}
@Override
public void onFailure(Throwable e, String response) {
Log.v("PS",e.toString());
}
});
}
}
我很困惑如何将响应返回到主要活动,以便我可以从该响应创建列表视图。
我是新手请帮助我提前谢谢