博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Can't create handler inside thread that has not called Looper.prepare()
阅读量:6446 次
发布时间:2019-06-23

本文共 1155 字,大约阅读时间需要 3 分钟。

版权声明:本文为博主原创文章,转载请标明出处。 https://blog.csdn.net/chaoyu168/article/details/52163029

最近做项目时出现个问题。

在一个基类中,创建一个Handler对象用于主线程向子线程发送数据,代码如下:

this.mThirdHandler = new Handler(){            @Override            public void handleMessage(android.os.Message msg) {                super.handleMessage(msg);                Bundle bundle = msg.getData();                isStop = bundle.getBoolean(mContext.getText(R.string.str_message_stop).toString());//isStop为基类中的一个私有成员            };        };

但不知道为啥一直报错:Can't create handler inside thread that has not called Looper.prepare()。

搜索后发现,原因是此Handler没有Looper。到哪儿去找Looper呢?自己建?

在代码前加入Looper.prepare();,心想这回可以了吧?

没想到依然报错,错误显示,一个主进程只能有一个Looper,要死了。郁闷中...

突然我想到主进程中肯定有Looper,Context.getMainLooper(),再看Handler的实例化时是可以指定Looper的,太爽了,最后代码如下

this.mThirdHandler = new Handler(mContext.getMainLooper()){            @Override            public void handleMessage(android.os.Message msg) {                super.handleMessage(msg);                Bundle bundle = msg.getData();                isStop = bundle.getBoolean(mContext.getText(R.string.str_message_stop).toString());            };        };
mContext为主界面context,实例化基类时引入的一个参数。
你可能感兴趣的文章
使用cin.get()而不是system("pause")来避免c++程序一闪而过
查看>>
简单的交换两个变量的数值
查看>>
Linux服务器上配置2个Tomcat或者多个Tomcat
查看>>
学习计划书
查看>>
CentOS7安装过程中,磁盘大于2T的报错处理
查看>>
单例模式2014-12
查看>>
【算法学习笔记】54.约瑟夫问题 模拟、逆推动规 SJTU OJ 1038 二哥的约瑟夫
查看>>
python迭代器和生成器(3元运算,列表生成式,生成器表达式,生成器函数)
查看>>
反射中的 Class.forName() 与 ClassLoader.loadClass() 的区别
查看>>
作业 20181113-1 版本控制报告
查看>>
【HDU5909】Tree Cutting(FWT)
查看>>
你的名字高清视频分享
查看>>
PyalgoTrade 计算权重平滑平均价(三)
查看>>
Android 写文件到手机
查看>>
[BZOJ2820]YY的GCD
查看>>
mongoDB 索引
查看>>
【SpringBoot】SpringBoot项目的The temporary upload location ***is not valid 问题
查看>>
把页面的Table直接输出到Excel文件中
查看>>
Linux获取当前用户信息函数
查看>>
Bash shell
查看>>