recherche

Maison  >  Questions et réponses  >  le corps du texte

android - 安卓okhttp问题

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

}
});

黄舟黄舟2773 Il y a quelques jours368

répondre à tous(2)je répondrai

  • 高洛峰

    高洛峰2017-04-17 18:00:51

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

    répondre
    0
  • ringa_lee

    ringa_lee2017-04-17 18:00:51

    看看有报错信息吗

    répondre
    0
  • Annulerrépondre