View 1

App的跟节点是PhoneWindow$DecorView, DecorView是PhoneWindow下面的内部类实例。PhoneWindow$DecorView下面有三个child,分别是LinearLayout View@49da043和View@44ff410,一个表示 navigationBarBackground ,一个表示StatusBarBackground. Linearlayout下面有两个子child,分别是ViewStub实例和FrameLayout实例,FrameLayout有一个子类 Fragment(这就是平常创建项目的inflate  xml最外层)

什么所有的控件都是View的实例,

onCreate() 中调用 setContentView(R.layout.main),Andorid就会从PhoneWindow 到每一层 执行 测量,布局,绘制。所有子类都 先执行 super.XXX方法

几  1 

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
 
 
 2  布局   布局 会用到 
@Override
public LayoutParams generateLayoutParams(AttributeSet attrs) {
    return new MarginLayoutParams(getContext(), attrs);
}
自定义布局
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
    mListViews.clear();
    mHieghts.clear();
    //
    int lineWidth = 0;
    int lineHeight = 0;
    int width = getWidth();
    int count = getChildCount();
    List<View> mList = new ArrayList<>();
    for (int i = 0; i < count; i++) {
        View child = getChildAt(i);
        MarginLayoutParams mlp = (MarginLayoutParams) child.getLayoutParams();
        int childWidth = child.getMeasuredWidth() + mlp.leftMargin + mlp.rightMargin;
        int childHeight = child.getMeasuredHeight() + mlp.topMargin + mlp.bottomMargin;
        
3布局完了之后 就会绘图

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值