自定义View 实现流式布局FlowLayout

自定义View 最关注的有三个方法 measure(),layout(),draw();我们去实现的时候一般只要重写他们的模板方法, 即onMeasure(),onLayout,onDraw()。

根据View的类型 分为自定义View和自定义ViewGroup。自定义View 只需要关注 onDraw()方法,测量和布局是交给父布局处理的,所以自定义ViewGroup必须要实现onMeasure() 和 onLayout()两个方法

因为我要自定义一个流式布局,所以需要自定义一个ViewGroup去实现,先说一下大概流程,最主要的任务是测量也就是onMeasure方法,因为是一个ViewGroup,所以需要先测量所有的子View,根据子View的宽高决定自己的宽高。这也是一般自定义ViewGroup的流程,即先测量子View然后测量自己,当然也有先测量自己,再根据自己去测量布局子View的,比如ViewPager。

 onMeasure(){
        1.测量子View
       1.1 遍历所有的 childView
       1.2 拿到 childView 的 layoutParams 把 childView 需要的尺寸转化成 MeasureSpec
       1.3 childView.measure(widthMeasureSpec,heightMeasureSpec) 测量childView
       1.4 测量的过程中需要记录行的最大值和高度的累加值 作为 FlawLayout 的宽和高,  还有换行的判断
     
   2.测量自己
        根据测量childView得出的宽高,测量一下自己 
          setMeasureDimension()
    }
    
   onLayout(){
        最好在onMeasure()中记录每一行的view,和每一行的height
        这样我们就可以直接遍历每一行的view 布局了view.layout(l,t,r,b),
    }

代码实现

public class FlowLayoutView extends ViewGroup {
    public FlowLayoutView(Context context) {
        super(context);
    }

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

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

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

    List<List<View>> allLineViews = new ArrayList<>();
    List<Integer> lineHeights = new ArrayList<>();
    int mHorizontalSpacing = 30, mVerticalSpacing = 30;

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        allLineViews.clear();
        lineHeights.clear();
        int paddingLeft = getPaddingLeft();
        int paddingRight = getPaddingRight();
        int paddingTop = getPaddingTop();
        int paddingBottom = getPaddingBottom();
        int parentNeededHeight = 0;
        int parentNeededWidth = 0;
        int lineWidth = 0;
        int lineHeight = 0;
        //自己的尺寸
        int selfWidth = MeasureSpec.getSize(widthMeasureSpec);
        int selfHeight = MeasureSpec.getSize(heightMeasureSpec);
        int childCount = getChildCount();
        List<View> lineViews = new ArrayList<>();
        for (int i = 0; i < childCount; i++) {
            View childView = getChildAt(i);
            if (childView.getVisibility() == GONE) {
                continue;
            }
            LayoutParams layoutParams = (LayoutParams) childView.getLayoutParams();
            //把xml中的尺寸转换成测量的单位
            int childWidthMeasureSpec = getChildMeasureSpec(widthMeasureSpec, paddingLeft + paddingRight, layoutParams.width);
            int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, paddingTop + paddingBottom, layoutParams.height);
            //度量childView
            childView.measure(childWidthMeasureSpec, childHeightMeasureSpec);

            //获取childView度量后的尺寸
            int childMeasuredWidth = childView.getMeasuredWidth();
            int childMeasuredHeight = childView.getMeasuredHeight();
            //判断是否换行
            if (paddingLeft + lineWidth + childMeasuredWidth + paddingRight > selfWidth) {
                //测量完一行,把这一行所有的view
                // 和这一行的高度 保存下来 方便layout
                allLineViews.add(lineViews);
                lineHeights.add(lineHeight);
                //记录所需的最大宽高
                parentNeededWidth = Math.max(parentNeededWidth, lineWidth + paddingLeft + paddingRight);
                parentNeededHeight = parentNeededHeight + lineHeight + mVerticalSpacing;

                //初始化下一行信息
                lineViews = new ArrayList<>();
                lineWidth = 0;
                lineHeight = 0;
            }
            //累加一行布局的宽高
            lineWidth = lineWidth + childMeasuredWidth + mHorizontalSpacing;
            lineHeight = Math.max(lineHeight, childMeasuredHeight);
            //保存一行view
            lineViews.add(childView);

            //最后一个view,结束测量
            if (i == childCount - 1) {
                allLineViews.add(lineViews);
                lineHeights.add(lineHeight);
                parentNeededWidth = Math.max(parentNeededWidth, lineWidth + paddingLeft + paddingRight);
                parentNeededHeight = parentNeededHeight + lineHeight + paddingTop + paddingBottom;
            }

        }
        //测量完所有的子View 后需要再重新测量自己
        // 1.获取 父View给的测量模式
        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        // 2. 根据测量模式和子View每一行的宽高 决定自己的尺寸
        int realWidth = (widthMode == MeasureSpec.EXACTLY) ? selfWidth : parentNeededWidth;
        int realHeight = (heightMode == MeasureSpec.EXACTLY) ? selfHeight : parentNeededHeight;
        //测量自己,这个单位是具体的尺寸,因为所有的子View都测量完了,肯定能得出测量值了,所以这里直接用就行了,
        // 不用再计算MeasureSpec
        setMeasuredDimension(realWidth, realHeight);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int paddingLeft = getPaddingLeft();
        int paddingTop = getPaddingTop();
        int paddingRight = getPaddingRight();
        int paddingBottom = getPaddingBottom();

        for (int i = 0; i < allLineViews.size(); i++) {
            int childTop = paddingTop;
            int childLeft = paddingLeft;
            List<View> views = allLineViews.get(i);
            for (View view : views) {
                /*
                 * view.getMeasuredWidth() 与view.getWidth()的区别
                 * 1.在onMeasure()的setMeasuredDimension(realWidth, realHeight);函数里
                 * setMeasuredWidth()。所以,在setMeasuredDimension(realWidth, realHeight)完成后,view.getMeasuredWidth()
                 * 才能获取到值。所有在view的生命周期里 view.measure()后就能获取measuredWidth了。
                 *
                 * 2. view.getWidth 在layout()之后才能获取到值。width = mRight -mLeft得到的,mRight、mLeft
                 * 是在view.layout()里赋值的
                 * */
                int measuredWidth = view.getMeasuredWidth();
                int measuredHeight = view.getMeasuredHeight();
                int right = childLeft + measuredWidth;
                int bottom = childTop + measuredHeight;
                view.layout(childLeft, childTop, right, bottom);
                childLeft = right + mHorizontalSpacing;
            }
            paddingTop = childTop + lineHeights.get(i) + mVerticalSpacing;
        }


    }

    //如果要使用自定义LayoutParams,必须再ViewGroup 中重写这两个方法
    @Override
    protected LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
        return new LayoutParams(p);
    }

    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new LayoutParams(this.getContext(), attrs);
    }

    public static class LayoutParams extends MarginLayoutParams {
        //在这里可以自定义layout_参数

        public LayoutParams(Context c, AttributeSet attrs) {
            super(c, attrs);
        }

        public LayoutParams(int width, int height) {
            super(width, height);
        }


        public LayoutParams(ViewGroup.LayoutParams source) {
            super(source);
        }


    }

}

使用
方法一:在xml 中使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="历史记录"
        android:textColor="@android:color/black"
        android:textSize="16dp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    
    <com.example.wangz.myapplication.view.FlowLayoutView
        android:id="@+id/flow_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button"
        android:layout_marginTop="@dimen/dp_10"
        android:paddingLeft="20dp"
        android:paddingTop="20dp"
        android:paddingRight="20dp"
        android:paddingBottom="@dimen/dp_10">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="母婴用品床上用品" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="15dp"
                    android:text="厨房 " />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="生活日用品调味料" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp_10"
                    android:text="abcdefgh" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="手纸 " /
    </com.example.wangz.myapplication.view.FlowLayoutView>

</LinearLayout>

方法二 :代码实现

public class MainActivity extends AppCompatActivity {

    String[] stringList = {"母婴用品床上用品", "厨房", "生活日用品调味料", "abcdefgh", "手纸", "厨房", "卫生纸"};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        FlowLayoutView flowLayoutView = findViewById(R.id.flow_layout);
        for (int i = 0; i < stringList.length; i++) {
            flowLayoutView.addView(getTextView(stringList[i]));
        }
    }

    private TextView getTextView(String text) {
        FlowLayoutView.LayoutParams layoutParams = new FlowLayoutView.LayoutParams(FlowLayoutView.LayoutParams.WRAP_CONTENT,
                FlowLayoutView.LayoutParams.WRAP_CONTENT);
        TextView textView = new TextView(this);
        textView.setLayoutParams(layoutParams);
        textView.setTextSize(12f);
        textView.setText(text);
        return textView;
    }

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