消息机制
文章平均质量分 82
sparkhuu
3年多安卓开发经验,一年多安卓带队经验
展开
-
android之ThreadLocal详解
threadlocal并不是线程,记得最早几年前面试android的时候,被人问到threadlocal当时没听过,直接回答说是线程,现在想想当时真怂。threadlocal而是一个线程内部的存储类,可以在指定线程内存储数据,数据存储以后,只有指定线程可以得到存储数据,说的比较抽象,直接看源码来解释** * Implements a thread-local storage, that is, a原创 2016-03-17 10:48:44 · 3268 阅读 · 0 评论 -
android之handler messagequene looper threadlocal 之间的详细解读
说到android的handler,他只是消息机制的上层接口,为什么这么说呢,消息机制真正的实现是在messagequene和looper中进行的 首先我们应该遇到过在一些子线程中new handler会报如下错误Can't create handler inside thread that has not called Looper.prepare().这是为什么呢,因为handler的创建,我原创 2016-03-17 15:12:30 · 1713 阅读 · 0 评论