android - 安卓okhttp问题
黄舟
黄舟 2017-04-17 17:58:51
0
2
363

网络正常,就是没有任何反应,没有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();

}
});

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

Antworte allen(2)
小葫芦

Callback的onFailure()和onResponse()回调都是在子线程中执行的,在子线程中弹Toast会抛异常,你确定没有错误抛出来?
要正常显示Toast,请通过主线程的Handler将相关操作分发到主线程,如handle.post(Runnable)

左手右手慢动作

看看有报错信息吗

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage