摘要:
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; 阅读全文
摘要:
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... 阅读全文