博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android之自定义ViewGroup和自动换行的布局的实现(支持按钮间隔)
阅读量:5024 次
发布时间:2019-06-12

本文共 3623 字,大约阅读时间需要 12 分钟。

viewgroup简单说就是可以装view的view.今天遇到一个问题,就是需要一个可以自动根据一行中view的宽度自动换行的布局,网上找了下,没有相关的例子,但是找到了思路:自定义一个viewgroup,然后在onlayout文件里面自动检测view的右边缘的横坐标值,和你的view的parent view的况度判断是否换行显示view就可以了。因为代码比较简单,就不多说了:

 

1 public class MyViewGroup extends ViewGroup { 2        private final static String TAG = "123"; 3         4        private final static int VIEW_MARGIN=2; 5     6        public MyViewGroup(Context context, AttributeSet attrs){ 7            super(context, attrs); 8        } 9        10        public MyViewGroup(Context context) {11            super(context);12        }13        @Override14        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {15            Log.d(TAG, "widthMeasureSpec = "+widthMeasureSpec+" heightMeasureSpec = "+heightMeasureSpec);16            17            for (int index = 0; index < getChildCount(); index++) {18                final View child = getChildAt(index);19                // measure20                child.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);21            }22    23            super.onMeasure(widthMeasureSpec, heightMeasureSpec);24        }25        private int jiange = 10;//按钮之间的间隔26        @Override27        protected void onLayout(boolean arg0, int arg1, int arg2, int arg3, int arg4) {28            Log.d(TAG, "changed = "+arg0+" left = "+arg1+" top = "+arg2+" right = "+arg3+" botom = "+arg4);29            final int count = getChildCount();30            int row=0;// which row lay you view relative to parent31            int lengthX=arg1 ;    // right position of child relative to parent32            int lengthY=arg2;    // bottom position of child relative to parent33            for(int i=0;i
arg3){46 lengthX=width+VIEW_MARGIN+arg1;47 row++;48 lengthY=row*(height+VIEW_MARGIN)+VIEW_MARGIN+height+arg2;49 }50 child.layout(lengthX-width, lengthY-height, lengthX, lengthY);51 }52 }53 }

 

 

这里有个地方要注意,那就要明白ViewGroup的绘图流程:ViewGroup绘制包括两个步骤:1.measure 2.layout

  在两个步骤中分别调用回调函数:1.onMeasure()   2.onLayout()

  1.onMeasure() 在这个函数中,ViewGroup会接受childView的请求的大小,然后通过childView的 measure(newWidthMeasureSpec, heightMeasureSpec)函数存储到childView中,以便childView的getMeasuredWidth() andgetMeasuredHeight() 的值可以被后续工作得到。

  2.onLayout() 在这个函数中,ViewGroup会拿到childView的getMeasuredWidth() andgetMeasuredHeight(),用来布局所有的childView。

  3.View.MeasureSpec 与 LayoutParams 这两个类,是ViewGroup与childView协商大小用的。其中,View.MeasureSpec是ViewGroup用来部署 childView用的, LayoutParams是childView告诉ViewGroup 我需要多大的地方。

  4.在View 的onMeasure的最后要调用setMeasuredDimension()这个方法存储View的大小,这个方法决定了当前View的大小。

  

Activity code:

1 public class GooleActivity extends Activity { 2     @Override 3     public void onCreate(Bundle savedInstanceState) { 4         super.onCreate(savedInstanceState); 5         setContentView(R.layout.main); 6         MyViewGroup myViewGroup = (MyViewGroup) this.findViewById(R.id.myviewgroup); 7         for(int i = 0 ; i<15;i++){ 8             Button button = null; 9             if(i%2==0){10                 button = new Button(this);11                 button.setText("偶数"+i);12             }else if(i%3==0){13                 button = new Button(this);14                 button.setText("奇数奇数奇数奇数"+i);15             }else{16                 button = new Button(this);17                 button.setText("超长的超长的超长的"+i);18             }19             20             myViewGroup.addView(button);21         }22     }23 }

 

xml code:

1 
2
6 7
11 12

 

 

 

 

  效果图:

 

 

转载于:https://www.cnblogs.com/androidxiaoyang/archive/2013/02/22/2921888.html

你可能感兴趣的文章
【MySQL】MySQL锁和隔离级别浅析二 之 INSERT
查看>>
Oracle T4-2 使用ILOM CLI升级Firmware
查看>>
4.14上午
查看>>
数据分析 -- 白话一下什么是决策树模型(转载)
查看>>
Java SPI机制原理和使用场景
查看>>
web前端java script学习2017.7.18
查看>>
删除TXPlatform
查看>>
LaTex:图片排版
查看>>
并发访问超时的问题可能性(引用)
查看>>
中小团队基于Docker的Devops实践
查看>>
利用python打开摄像头并保存
查看>>
System函数的使用说明
查看>>
Selenium-测试对象操作之:获取浏览器滚动条滚动距离
查看>>
Linux下MySQL数据库安装与配置
查看>>
Extjs String转Json
查看>>
oracle入门(4)——少而常用的命令
查看>>
tcp文件上传优化
查看>>
单片机——间隔点亮LED
查看>>
【Python】实战一 外星人入侵
查看>>
Repeater 动态增加删除一行
查看>>