网络正常,就是没有任何反应,没有toast提示,代码:
OkHttpClient o=new OkHttpClient();
Request r=new Request.Builder().url("http://www.baidu.com").build();
o.newCall(r).enqueue(new Callback()
{
@Override
public void onFailure(Request p1, IOException p2)
{
Toast.makeText(MainActivity.this,"error",Toast.LENGTH_LONG).show();
}
@Override
public void onResponse(final Response p1) throws IOException
{
Toast.makeText(MainActivity.this,p1.body().string(),Toast.LENGTH_LONG).show();
}
});
Callback的onFailure()和onResponse()回呼都是在子執行緒中執行的,在子執行緒中彈Toast會拋異常,你確定沒有錯誤拋出?
要正常顯示Toast,請透過主線程的Handler將相關操作分發到主線程,如handle.post(Runnable)
看看有報錯資訊嗎