
android学习笔记
文章平均质量分 86
javapolo
这个作者很懒,什么都没留下…
展开
-
android 笔记handler
最近两天在学习android异步处理机制handler,以下是个人对handler的一个自我认识 谈到handler机制,首先我以一幅图来谈谈我对android handler 的认识 A Handler allows you to send and process Message and Runnable objects associated...原创 2011-08-01 17:34:34 · 159 阅读 · 0 评论 -
android threadlocal笔记
总所周知,threadlocal用的还是蛮多的,今天回顾android源码又看到它的影子,所以自己抽空做个笔记,先从一个简单的例子开始,该例子就是让每个线程拥有自己唯一的一个Student对象,具体代码如下package com.threadlocalttest;/** * 学生类 * @author Administrator * */public class Student { pri...原创 2012-01-12 15:33:47 · 104 阅读 · 0 评论 -
子线程更新ui
When an Activity receives focus, it will be requested to draw its layout. The Android framework will handle the procedure for drawing, but the Activity must provide the root node of its layout hierarc...原创 2012-01-12 16:02:45 · 203 阅读 · 0 评论