1. 首页
  2. 数据库
  3. 其它
  4. Android异步消息处理机制实现原理详解

Android异步消息处理机制实现原理详解

上传者: 2021-02-01 13:28:59上传 PDF文件 96.81KB 热度 16次
消息处理机制主要对象:Looper,Handler,Message(还有MessageQueue和Runnable) Looper不断从MessageQueue消息队列中取出一个Message,然后传给Handle,如此循环往复,如果队列为空,那么它会进入休眠。 这些类的主要变量 Looper.java static final ThreadLocal sThreadLocal = new ThreadLocal(); private static Looper sMainLooper; // guarded by Looper.class final
用户评论