码迷,mamicode.com
首页 > Web开发 > 详细

使用okhttp 报Can't create handler inside thread that has not called Looper.prepare()

时间:2015-04-17 15:41:58      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

我是在用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()

标签:

原文地址:http://blog.csdn.net/u013173289/article/details/45097099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!