摘要: Different Ways to update UI in a none-ui thread:The following is a little demo showing three different ways to update ui in a none-ui thread and the best way i will commend is by a Handler.package com.slowalker.handlerdemo;import android.os.Bundle;import android.os.Handler;import android.os.Message; 阅读全文
posted @ 2013-10-31 21:50 slowalker 阅读(220) 评论(0) 推荐(0) 编辑
摘要: ViewView's Main Draw Process:1. onMeasure() Called to determine the size requirements for this view and all its children.2. onLayout() Called when this view should assign a size and postion to all of its children. 3. onDraw() Called when this view render its... 阅读全文
posted @ 2013-10-31 12:43 slowalker 阅读(163) 评论(0) 推荐(0) 编辑