View工作原理 -- 自定义View(3)

继承ViewGroup,例子:FlowLayout

FlowLayout(流式布局),标签控件(如TextView)根据FlowLayout的宽度,自动地往右添加,如果当前行剩余空间不足,则自动添加到下一行。
关键点:
1.需要能够识别margin属性,布局参数类使用MarginLayoutParams;
2.在onMeasure方法中对自己及所有的子元素进行测量,要考虑自己的padding及子元素的margin;
3.在onLayout方法中对所有的子元素进行布局,要考虑自己的padding及子元素的margin。

//自定义布局控件FlowLayout,继承ViewGroup
public class FlowLayout extends ViewGroup {
    public FlowLayout(Context context) {
        super(context);
    }

    public FlowLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public FlowLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new MarginLayoutParams(getContext(), attrs); //使用MarginLayoutParams
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
        int parentWidthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
        int parentHeightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
        int parentHeightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
        Logger.d("父容器, 宽度 MeasureSpec: " + MeasureSpec.toString(widthMeasureSpec));
        Logger.d("父容器, 高度 MeasureSpec: " +  MeasureSpec.toString(heightMeasureSpec));

        int curLineUsedWidth  = getPaddingLeft() + getPaddingRight(); //当前行已使用的宽度,要考虑父容器padding
        int linesUsedWidthMax = curLineUsedWidth; //所有行中已使用的宽度的最大值
        int curLineUsedHeightMax = 0; //当前行已使用的高度的最大值
        int linesUsedHeightTotal = getPaddingTop() + getPaddingBottom(); //所有行已使用的高度的总和,要考虑父容器padding
        Logger.d("当前行已使用的宽度: " +  curLineUsedWidth);
        Logger.d("所有行中已使用的宽度的最大值: " +  linesUsedWidthMax);
        Logger.d("当前行已使用的高度的最大值: " +  curLineUsedHeightMax);
        Logger.d("所有行已使用的高度的总和: " +  linesUsedHeightTotal);
        int childCounts = getChildCount();
        for(int i = 0; i < childCounts; i++) {
            Logger.d("子元素: " + i);
            View child = getChildAt(i);
            if(child.getVisibility() == View.GONE) //如果子元素不可见则不进行测量
                continue;
            int widthUsed = curLineUsedWidth - getPaddingLeft() - getPaddingRight(); //已使用的宽度,不包含父容器padding
            int heightUsed = linesUsedHeightTotal - getPaddingTop() - getPaddingBottom(); //已使用的高度,不包含父容器padding
            Logger.d("已使用的宽度,不包含父容器padding: " +  widthUsed + ", 已使用的高度,不包含父容器padding: " + heightUsed);
            //如果使用measureChildWithMargins方法,当ViewGroup宽度的剩余空间小于子元素在无限制条件下设置wrap_content时的大小时(当然还需要加上leftMargin跟rightMargin),子元素的最终测量尺寸(当然还需要加上leftMargin跟rightMargin)会被限制为ViewGroup宽度的剩余空间。
            //因为子元素的SpecMode为AT_MOST的情况下,子元素的SpecSize会被设置为ViewGroup宽度的剩余空间,而子元素最终的测量尺寸是不能够超过SpecSize的。
            //measureChildWithMargins(child, widthMeasureSpec, widthUsed, heightMeasureSpec, heightUsed); //调用系统方法测量子元素,要考虑父容器padding及子元素margin
            measureChild(child, widthMeasureSpec, heightMeasureSpec);
            MarginLayoutParams lp = (MarginLayoutParams)child.getLayoutParams();
            Logger.d("子元素: " + i + ", 测量尺寸 width: " + child.getMeasuredWidth() + ", height: " + child.getMeasuredHeight());
            int childWidthWithMargin = child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin; //子元素的宽度加上margin
            int childHeightWithMargin = child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin; //子元素的高度加上margin

            if(curLineUsedWidth  + childWidthWithMargin > parentWidthSpecSize) {
                Logger.d("宽度不够,换行");
                curLineUsedWidth = getPaddingLeft() + getPaddingRight() + childWidthWithMargin;
                Logger.d("子元素: " + i + ",当前行已使用的宽度: " +  curLineUsedWidth);

                linesUsedHeightTotal += curLineUsedHeightMax;
                curLineUsedHeightMax = childHeightWithMargin;
            } else {
                Logger.d("宽度足够,不用换行");
                curLineUsedWidth += childWidthWithMargin;
                Logger.d("子元素: " + i + ",当前行已使用的宽度: " +  curLineUsedWidth);
                linesUsedWidthMax = Math.max(linesUsedWidthMax, curLineUsedWidth);

                curLineUsedHeightMax = Math.max(curLineUsedHeightMax, childHeightWithMargin);
            }
            if(i == childCounts - 1) { //如果是最后一个子元素
                Logger.d("最后一个子元素");
                linesUsedHeightTotal += curLineUsedHeightMax;
            }
        }

        Logger.d("linesUsedWidthMax: " + linesUsedWidthMax);
        Logger.d("linesUsedHeightTotal: " + linesUsedHeightTotal);
        setMeasuredDimension((parentWidthSpecMode == MeasureSpec.EXACTLY) ? parentWidthSpecSize
                : linesUsedWidthMax, (parentHeightSpecMode == MeasureSpec.EXACTLY) ? parentHeightSpecSize
                : linesUsedHeightTotal);
        Logger.d("父容器, 测量尺寸 width: " + getMeasuredWidth() + ", height: " + getMeasuredHeight());
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int parentWidth = getMeasuredWidth();
        int parentHeight = getMeasuredHeight();
        int childCounts = getChildCount();
        int curLineUsedWidth  = getPaddingLeft() + getPaddingRight(); //当前行已使用的宽度,要考虑父容器padding
        int curLineUsedHeightMax = 0; //当前行已使用的高度的最大值
        int linesUsedHeightTotal = getPaddingTop() + getPaddingBottom(); //所有行已使用的高度的总和,要考虑父容器padding
        Logger.d("当前行已使用的宽度: " +  curLineUsedWidth);
        Logger.d("当前行已使用的高度的最大值: " +  curLineUsedHeightMax);
        Logger.d("所有行已使用的高度的总和: " +  linesUsedHeightTotal);
        for(int i = 0; i < childCounts; i++) {
            Logger.d("子元素: " + i);
            View child = getChildAt(i);
            if(child.getVisibility() == View.GONE)
                continue;
            MarginLayoutParams lp = (MarginLayoutParams)child.getLayoutParams();
            int childWidthWithMargin = child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin; //子元素的宽度加上margin
            int childHeightWithMargin = child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin; //子元素的高度加上margin

            int left, top, right, bottom;
            if(curLineUsedWidth + childWidthWithMargin > parentWidth) {
                Logger.d("宽度不够,换行");
                left = getPaddingLeft() + lp.leftMargin;
                top = linesUsedHeightTotal + curLineUsedHeightMax - getPaddingBottom() + lp.topMargin;
                right = left + child.getMeasuredWidth();
                bottom = top + child.getMeasuredHeight();
                child.layout(left, top, right, bottom);

                curLineUsedWidth = getPaddingLeft() + getPaddingRight() + childWidthWithMargin;
                Logger.d("子元素: " + i + ",当前行已使用的宽度: " +  curLineUsedWidth);

                linesUsedHeightTotal += curLineUsedHeightMax;
                curLineUsedHeightMax = childHeightWithMargin;
            } else {
                Logger.d("宽度足够,不用换行");
                left = curLineUsedWidth - getPaddingRight() + lp.leftMargin;
                top = linesUsedHeightTotal - getPaddingBottom() + lp.topMargin;
                right = left + child.getMeasuredWidth();
                bottom = top + child.getMeasuredHeight();
                child.layout(left, top, right, bottom);

                curLineUsedWidth += childWidthWithMargin;
                Logger.d("子元素: " + i + ",当前行已使用的宽度: " +  curLineUsedWidth);

                curLineUsedHeightMax = Math.max(curLineUsedHeightMax, childHeightWithMargin);
            }
            Logger.d("子元素: " + i + ",left: " +  left + ", top: " + top + ", right: " + right + ", bottom: " + bottom);
        }
    }
}

//布局
<com.tomorrow.androidtest3.FlowLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="20px"
        android:background="#808080">
        <TextView
            style="@style/flowLayoutStyle"
            android:text="搭建知识框架" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="Android" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="Java" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="设计模式" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="架构模式" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="App后台" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="性能优化" />
        <TextView
            style="@style/flowLayoutStyle"
            android:text="打通任督二脉" />
</com.tomorrow.androidtest3.FlowLayout>

//风格,styles.xml
<style name="flowLayoutStyle">
    <item name="android:layout_width">wrap_content</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:layout_margin">20px</item>
    <item name="android:background">@drawable/background</item>
    <item name="android:textColor">#ffffff</item>
</style>

//背景,background.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="@color/colorPrimary" />
    <corners
        android:radius="30dp" />
    <padding
        android:bottom="2dp"
        android:left="10dp"
        android:right="10dp"
        android:top="2dp" />
</shape>

//MainActivity
setContentView(R.layout.activity_main);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容