自定义view之ViewGroup绘制阶梯型布局

//主布局什么都不用做

//继承类
 public class ViewGroupView extends ViewGroup{
    public ViewGroupView(Context context) {
        this(context,null);
    }

    public ViewGroupView(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }

    public ViewGroupView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        //所有子view加起来总的Measured Dimension高度和宽度
        int measuredWidth = 0;
        int measuredHeight = 0;
        int count = getChildCount();
        for (int i = 0; i < count; i++) {
            View v = getChildAt(i);
            if (v.getVisibility() != View.GONE) {
                measureChild(v, widthMeasureSpec, heightMeasureSpec);
                measuredWidth += v.getMeasuredWidth();
                measuredWidth=Math.max(measuredWidth,v.getMeasuredWidth());
                measuredHeight += v.getMeasuredHeight();
                measuredHeight=Math.max(measuredHeight, v.getMeasuredHeight());
            }
        }
        //仔细检查!不要疏忽掉一些padding的值
        measuredWidth += getPaddingLeft() + getPaddingRight();
        measuredHeight += getPaddingTop()+50 + getPaddingBottom();
        setMeasuredDimension(measuredWidth, measuredHeight);
    }

    //Android系统在onMeasure之后调用onLayout
    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        //此时回调的参数l,t,r,b是上一步onMeasure计算出来的值。r是总宽度,b是总高度
        //我们在l,t,r,b这四个参数“框”出来的空间内一个一个摆放我们自己的子view

        int count = getChildCount();
        for (int i = 0; i < count; i++) {
            View v = getChildAt(i);
            if (v.getVisibility() != View.GONE) {
                int childWidth = v.getMeasuredWidth();
                int childHeight = v.getMeasuredHeight();

                //开始摆放
                v.layout(l, t, l + childWidth, t + childHeight);

                //把左边的锚定位置往右移
                //如果在垂直方向继续累加l偏移量,那么显示出来的三个子view呈现阶梯状。
                l += childWidth;

                //垂直方向累计坐标量
                t += childHeight;
            }
        }
    }
}
//主xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.simulatedweektest.ViewGroupActivity">
    <com.simulatedweektest.ViewGroupView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/ButtonView">
        <TextView
            android:layout_width="100dip"
            android:layout_height="50dip"
            android:background="@android:color/holo_red_light"
            android:gravity="center" />

        <TextView
            android:layout_width="100dip"
            android:layout_height="50dip"
            android:background="@android:color/holo_blue_light"
            android:gravity="center" />

        <TextView
            android:layout_width="100dip"
            android:layout_height="50dip"
            android:background="@android:color/holo_green_light"
            android:gravity="center" />
    </com.simulatedweektest.ViewGroupView>
</RelativeLayout>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值