我是在用okhttp的请求数据,在处理数据的时候,打开了一个dialog用来提示,然后报了这个错误。
经过调试,发现错误原因是: dialog必须在一个被Looper.prepare()回调的的线程里创建,但是okhttp这个线程不具备这个条件
<span style="font-size:14px;">OkHttpUtil.getDataInGet(updateUrl, new Callback() { @Override public void onFailure(Request request, IOException e) { enterHome(); } @Override public void onResponse(Response response) throws IOException { String result = response.body().string(); if (!TextUtils.isEmpty(result)) { processData(result); } } });</span>
在onResponse()线程进行下面操作。
<span style="font-size:14px;">private void showUpdateDialog(final UpdateInfo updateInfo) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("有新版本,快来更新吧"); builder.setMessage(updateInfo.description); builder.setCancelable(false); builder.setPositiveButton("更新", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { downloadApk(updateInfo); } }); builder.setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { enterHome(); } }); builder.show(); }</span>
解决办法:
1.换一个线程来创建dialog,可以使用handler,
2.如果是activity,用runOnmainThread(),
我采用的是第二种方式解决的问题。
使用okhttp 报Can't create handler inside thread that has not called Looper.prepare()
时间: 2024-10-06 11:54:04