我设置了以下 Http 请求。但是为什么这个 HTTP 请求没有响应呢?
AsyncHttpClient client = new AsyncHttpClient();
Log.d("click","click");
client.get("http://www.baidu.com", new AsyncHttpResponseHandler()
{
@Override
public void onSuccess(String response) {
Log.d("response",response);
//System.out.println(response);
}
});
任何人的帮助都非常感谢。