Android 自定义ViewGroup 实战篇 -> 实现FlowLayout
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38352503 ,本文出自【张鸿洋的博客】
1、概述
上一篇已经基本给大家介绍了如何自定义ViewGroup,如果你还不了解,请查看:Android 手把手教您自定ViewGroup ,本篇将使用上篇介绍的方法,给大家带来一个实例:实现FlowLayout,何为FlowLayout,如果对Java的Swing比较熟悉的话一定不会陌生,就是控件根据ViewGroup的宽,自动的往右添加,如果当前行剩余空间不足,则自动添加到下一行。有点所有的控件都往左飘的感觉,第一行满了,往第二行飘~所以也叫流式布局。Android并没有提供流式布局,但是某些场合中,流式布局还是非常适合使用的,比如关键字标签,搜索热词列表等,比如下图:
这些都特别适合使用FlowLayout,本篇博客会带领大家自己实现FlowLayout,然后使用我们自己定义的FlowLayout实现上面的标签效果。对了,github已经有了这样FlowLayout,但是我觉得丝毫不影响我们对其的学习,学会使用一个控件和学会写一个控件,我相信大家都明白,授人以鱼不如授人以渔。
2、简单的分析
1、对于FlowLayout,需要指定的LayoutParams,我们目前只需要能够识别margin即可,即使用MarginLayoutParams.
2、onMeasure中计算所有childView的宽和高,然后根据childView的宽和高,计算自己的宽和高。(当然,如果不是wrap_content,直接使用父ViewGroup传入的计算值即可)
3、onLayout中对所有的childView进行布局。
3、generateLayoutParams
因为我们只需要支持margin,所以直接使用系统的MarginLayoutParams
- @Override
- public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs)
- {
- return new MarginLayoutParams(getContext(), attrs);
- }
4、onMeasure
- /**
- * 负责设置子控件的测量模式和大小 根据所有子控件设置自己的宽和高
- */
- @Override
- protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
- {
- super.onMeasure(widthMeasureSpec, heightMeasureSpec);
- // 获得它的父容器为它设置的测量模式和大小
- int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
- int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
- int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
- int modeHeight = MeasureSpec.getMode(heightMeasureSpec);
- Log.e(TAG, sizeWidth + "," + sizeHeight);
- // 如果是warp_content情况下,记录宽和高
- int width = 0;
- int height = 0;
- /**
- * 记录每一行的宽度,width不断取最大宽度
- */
- int lineWidth = 0;
- /**
- * 每一行的高度,累加至height
- */
- int lineHeight = 0;
- int cCount = getChildCount();
- // 遍历每个子元素
- for (int i = 0; i < cCount; i++)
- {
- View child = getChildAt(i);
- // 测量每一个child的宽和高
- measureChild(child, widthMeasureSpec, heightMeasureSpec);
- // 得到child的lp
- MarginLayoutParams lp = (MarginLayoutParams) child
- .getLayoutParams();
- // 当前子空间实际占据的宽度
- int childWidth = child.getMeasuredWidth() + lp.leftMargin
- + lp.rightMargin;
- // 当前子空间实际占据的高度
- int childHeight = child.getMeasuredHeight() + lp.topMargin
- + lp.bottomMargin;
- /**
- * 如果加入当前child,则超出最大宽度,则的到目前最大宽度给width,类加height 然后开启新行
- */
- if (lineWidth + childWidth > sizeWidth)
- {
- width = Math.max(lineWidth, childWidth);// 取最大的
- lineWidth = childWidth; // 重新开启新行,开始记录
- // 叠加当前高度,
- height += lineHeight;
- // 开启记录下一行的高度
- lineHeight = childHeight;
- } else
- // 否则累加值lineWidth,lineHeight取最大高度
- {
- lineWidth += childWidth;
- lineHeight = Math.max(lineHeight, childHeight);
- }
- // 如果是最后一个,则将当前记录的最大宽度和当前lineWidth做比较
- if (i == cCount - 1)
- {
- width = Math.max(width, lineWidth);
- height += lineHeight;
- }
- }
- setMeasuredDimension((modeWidth == MeasureSpec.EXACTLY) ? sizeWidth
- : width, (modeHeight == MeasureSpec.EXACTLY) ? sizeHeight
- : height);
- }
首先得到其父容器传入的测量模式和宽高的计算值,然后遍历所有的childView,使用measureChild方法对所有的childView进行测量。然后根据所有childView的测量得出的宽和高得到该ViewGroup如果设置为wrap_content时的宽和高。最后根据模式,如果是MeasureSpec.EXACTLY则直接使用父ViewGroup传入的宽和高,否则设置为自己计算的宽和高。
5、onLayout
onLayout中完成对所有childView的位置以及大小的指定
- /**
- * 存储所有的View,按行记录
- */
- private List<List<View>> mAllViews = new ArrayList<List<View>>();
- /**
- * 记录每一行的最大高度
- */
- private List<Integer> mLineHeight = new ArrayList<Integer>();
- @Override
- protected void onLayout(boolean changed, int l, int t, int r, int b)
- {
- mAllViews.clear();
- mLineHeight.clear();
- int width = getWidth();
- int lineWidth = 0;
- int lineHeight = 0;
- // 存储每一行所有的childView
- List<View> lineViews = new ArrayList<View>();
- int cCount = getChildCount();
- // 遍历所有的孩子
- for (int i = 0; i < cCount; i++)
- {
- View child = getChildAt(i);
- MarginLayoutParams lp = (MarginLayoutParams) child
- .getLayoutParams();
- int childWidth = child.getMeasuredWidth();
- int childHeight = child.getMeasuredHeight();
- // 如果已经需要换行
- if (childWidth + lp.leftMargin + lp.rightMargin + lineWidth > width)
- {
- // 记录这一行所有的View以及最大高度
- mLineHeight.add(lineHeight);
- // 将当前行的childView保存,然后开启新的ArrayList保存下一行的childView
- mAllViews.add(lineViews);
- lineWidth = 0;// 重置行宽
- lineViews = new ArrayList<View>();
- }
- /**
- * 如果不需要换行,则累加
- */
- lineWidth += childWidth + lp.leftMargin + lp.rightMargin;
- lineHeight = Math.max(lineHeight, childHeight + lp.topMargin
- + lp.bottomMargin);
- lineViews.add(child);
- }
- // 记录最后一行
- mLineHeight.add(lineHeight);
- mAllViews.add(lineViews);
- int left = 0;
- int top = 0;
- // 得到总行数
- int lineNums = mAllViews.size();
- for (int i = 0; i < lineNums; i++)
- {
- // 每一行的所有的views
- lineViews = mAllViews.get(i);
- // 当前行的最大高度
- lineHeight = mLineHeight.get(i);
- Log.e(TAG, "第" + i + "行 :" + lineViews.size() + " , " + lineViews);
- Log.e(TAG, "第" + i + "行, :" + lineHeight);
- // 遍历当前行所有的View
- for (int j = 0; j < lineViews.size(); j++)
- {
- View child = lineViews.get(j);
- if (child.getVisibility() == View.GONE)
- {
- continue;
- }
- MarginLayoutParams lp = (MarginLayoutParams) child
- .getLayoutParams();
- //计算childView的left,top,right,bottom
- int lc = left + lp.leftMargin;
- int tc = top + lp.topMargin;
- int rc =lc + child.getMeasuredWidth();
- int bc = tc + child.getMeasuredHeight();
- Log.e(TAG, child + " , l = " + lc + " , t = " + t + " , r ="
- + rc + " , b = " + bc);
- child.layout(lc, tc, rc, bc);
- left += child.getMeasuredWidth() + lp.rightMargin
- + lp.leftMargin;
- }
- left = 0;
- top += lineHeight;
- }
- }
allViews的每个Item为每行所有View的List集合。
mLineHeight记录的为每行的最大高度。
23-48行,遍历所有的childView,用于设置allViews的值,以及mLineHeight的值。
57行,根据allViews的长度,遍历所有的行数
67-91行,遍历每一行的中所有的childView,对childView的left , top , right , bottom 进行计算,和定位。
92-93行,重置left和top,准备计算下一行的childView的位置。
好了,到此完成了所有的childView的绘制区域的确定,到此,我们的FlowLayout的代码也结束了~~静下心来看一看是不是也不难~
6、测试
我准备使用TextView作为我们的标签,所以为其简单写了一点样式:
res/values/styles.xml中:
- <style name="text_flag_01">
- <item name="android:layout_width">wrap_content</item>
- <item name="android:layout_height">wrap_content</item>
- <item name="android:layout_margin">4dp</item>
- <item name="android:background">@drawable/flag_01</item>
- <item name="android:textColor">#ffffff</item>
- </style>
flag_01.xml
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="#7690A5" >
- </solid>
- <corners android:radius="5dp"/>
- <padding
- android:bottom="2dp"
- android:left="10dp"
- android:right="10dp"
- android:top="2dp" />
- </shape>
布局文件:
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#E1E6F6"
- android:orientation="vertical" >
- <com.zhy.zhy_flowlayout02.FlowLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <TextView
- style="@style/text_flag_01"
- android:text="Welcome" />
- <TextView
- style="@style/text_flag_01"
- android:text="IT工程师" />
- <TextView
- style="@style/text_flag_01"
- android:text="学习ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="恋爱ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="挣钱ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="努力ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="I thick i can" />
- </com.zhy.zhy_flowlayout02.FlowLayout>
- </LinearLayout>
效果图:
是不是还不错,下面继续简单自定义几个背景:
res/drawble/flog_02.xml
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="#FFFFFF" >
- </solid>
- <corners android:radius="40dp"/>
- <stroke android:color="#C9C9C9" android:width="2dp"/>
- <padding
- android:bottom="2dp"
- android:left="10dp"
- android:right="10dp"
- android:top="2dp" />
- </shape>
flag_03.xml
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="#FFFFFF" >
- </solid>
- <corners android:radius="40dp"/>
- <padding
- android:bottom="2dp"
- android:left="10dp"
- android:right="10dp"
- android:top="2dp" />
- </shape>
布局文件:
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#E1E6F6"
- android:orientation="vertical" >
- <com.zhy.zhy_flowlayout02.FlowLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <TextView
- style="@style/text_flag_01"
- android:text="Welcome" />
- <TextView
- style="@style/text_flag_01"
- android:text="IT工程师" />
- <TextView
- style="@style/text_flag_01"
- android:text="学习ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="恋爱ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="挣钱ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="努力ing" />
- <TextView
- style="@style/text_flag_01"
- android:text="I thick i can" />
- </com.zhy.zhy_flowlayout02.FlowLayout>
- <com.zhy.zhy_flowlayout02.FlowLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp" >
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="Welcome"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="IT工程师"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="学习ing"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="恋爱ing"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="挣钱ing"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="努力ing"
- android:textColor="#888888" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_02"
- android:text="I thick i can"
- android:textColor="#888888" />
- </com.zhy.zhy_flowlayout02.FlowLayout>
- <com.zhy.zhy_flowlayout02.FlowLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp" >
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="Welcome"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="IT工程师"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="学习ing"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="恋爱ing"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="挣钱ing"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="努力ing"
- android:textColor="#43BBE7" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_03"
- android:text="I thick i can"
- android:textColor="#43BBE7" />
- </com.zhy.zhy_flowlayout02.FlowLayout>
- </LinearLayout>
效果图:
暂不赞~~上面都是match_parent~~下面固定下宽度,实现文章最开始的移动开发热门标签:
flag_04.xml
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="#E7E7E7" >
- </solid>
- <corners
- android:radius="30dp"
- />
- <padding
- android:bottom="2dp"
- android:left="10dp"
- android:right="10dp"
- android:top="2dp" />
- </shape>
布局文件:
- <com.zhy.zhy_flowlayout02.FlowLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="200dp"
- android:layout_height="wrap_content"
- android:background="#FFFFFF" >
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="Welcome"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="IT工程师"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="学习ing"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="恋爱ing"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="挣钱ing"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="努力ing"
- android:textColor="#323232" />
- <TextView
- style="@style/text_flag_01"
- android:background="@drawable/flag_04"
- android:text="I thick i can"
- android:textColor="#323232" />
- </com.zhy.zhy_flowlayout02.FlowLayout>
效果图:
是不是完全相同~~o了~
如果你觉得本篇博客对你有用,那么就留个言或者顶一个~~
Android 自定义ViewGroup 实战篇 -> 实现FlowLayout的更多相关文章
- android自定义viewgroup之我也玩瀑布流
先看效果图吧, 继上一篇<android自定义viewgroup实现等分格子布局>中实现的布局效果,这里稍微有些区别,每个格子的高度不规则,就是传说的瀑布流布局,一般实现这种效果,要么用第 ...
- Android 自己定义ViewGroup 实战篇 -> 实现FlowLayout
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38352503 .本文出自[张鸿洋的博客] 1.概述 上一篇已经基本给大家介绍了怎 ...
- Android -- 自定义ViewGroup实现FlowLayout效果
1,在开发的时候,常在我们的需求中会有这种效果,添加一个商品的一些热门标签,效果图如下: 2,从上面效果可以看得出来,这是一个自定义的ViewGroup,然后实现换行效果,让我们一起来实现一下 自定义 ...
- Android自定义ViewGroup
视图分类就两类,View和ViewGroup.ViewGroup是View的子类,ViewGroup可以包含所有的View(包括ViewGroup),View只能自我描绘,不能包含其他View. 然而 ...
- Android自定义ViewGroup,实现自动换行
学习<Android开发艺术探索>中自定义ViewGroup章节 自定义ViewGroup总结的知识点 一.自定义ViewGroup中,onMeasure理解 onMeasure(int ...
- android 自定义ViewGroup和对view进行切图动画实现滑动菜单SlidingMenu[转]
http://blog.csdn.net/jj120522/article/details/8095852 示意图就不展示了,和上一节的一样,滑动菜单SlidingMenu效果如何大家都比较熟悉,在这 ...
- Android自定义View实战(SlideTab-可滑动的选择器)
转载请标明出处: http://blog.csdn.net/xmxkf/article/details/52178553 本文出自:[openXu的博客] 目录: 初步分析重写onDraw绘制 重写o ...
- Android自定义ViewGroup(四、打造自己的布局容器)
转载请标明出处: http://blog.csdn.net/xmxkf/article/details/51500304 本文出自:[openXu的博客] 目录: 简单实现水平排列效果 自定义Layo ...
- android自定义viewgroup初步之一----抽屉菜单
转载请注明出处 http://blog.csdn.net/wingichoy/article/details/47832151 几天前在慕课网上看到鸿洋老师的 自定义卫星菜单,感觉很有意思,于是看完视 ...
随机推荐
- nexus-2.11.4-01-bundle.tar.gz 下载地址
wget http://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.11.4-01-bundle.tar.gz 注意原本的是ht ...
- 【题解】[P3557 POI2013]GRA-Tower Defense Game
[题解][P3557 POI2013]GRA-Tower Defense Game 这道题是真的** 根据题目给的\(k\),可以知道,我们随便放塔,只要不全放一起,一定是一种合法的方案. 直接枚举就 ...
- 我的Android进阶之旅------>Android如何去除GridView的按下或点击选中后的背景效果
今天用GridView做了一个界面,自己自定好了一个组件,并且设置好了点击和不点击组件时候的效果,但是运行的时候发现在我定义好的背景下面还有一层不知道哪儿来的背景,严重影响了我自定义的组件的效果. 后 ...
- (转)javascript中call()、apply()、bind()的用法
其实是一个很简单的东西,认真看十分钟就从一脸懵B 到完全 理解! 先看明白下面: 例1 obj.objAge; //17 obj.myFun() //小张年龄undefined 例2 shows( ...
- poj1328 Radar Installation —— 贪心
题目链接:http://poj.org/problem?id=1328 题解:区间选点类的题目,求用最少的点以使得每个范围都有点存在.以每个点为圆心,r0为半径,作圆.在x轴上的弦即为雷达可放置的范围 ...
- 介绍 Java 的内存泄漏
java最明显的一个优势就是它的内存管理机制.你只需简单创建对象,java的垃圾回收机制负责分配和释放内存.然而情况并不像想像的那么简单,因为在Java应用中经常发生内存泄漏.脚本代码 本教程演示了什 ...
- linux 进程学习笔记-共享内存
如果能划定一块物理内存,让多个进程都能将该内存映射到其自身虚拟内存空间的话,那么进程可以通过向这块内存空间读写数据而达到通信的目的.另外,和消息队列不同的是,共享的内存在用户空间而不是核空间,那么就不 ...
- php设置编码格式的方法
a. 如果欲使用gb2312编码,那么php要输出头:header(“Content-Type: text/html; charset=gb2312"),静态页面添加<meta htt ...
- js图片上传及显示
html部分: <form action='' method='post' name='myform'> <input type='file' id='iptfileupload' ...
- ACM学习历程—HDU 2112 HDU Today(map && spfa && 优先队列)
Description 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强.这时候,XHD夫妇也退居了二线 ...