Android纯代码如何实现复杂自定义控件onMeasure()、onLayout()?
Admin 2022-04-12 群英行业资讯
测量: onMeasure(): 测量自己的大小,为正式布局提供建议
布局: onLayout(): 使用layout()函数对所有子控件布局
绘制: onDraw(): 根据布局的位置绘图
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
参数即父类传过来的两个宽高的"建议值",即把当前view的高设置为:heightMeasureSpec ;宽设置为:widthMeasureSpec,这个参数不是简单的整数类型,而是2位整数(模式类型)和30位整数(实际数值) 的组合,其中模式分为三种:
UNSPECIFIED(未指定),父元素部队自元素施加任何束缚,子元素可以得到任意想要的大小;UNSPECIFIED=00000000000000000000000000000000
EXACTLY(完全),父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它本身大小;EXACTLY =01000000000000000000000000000000
AT_MOST(至多),子元素至多达到指定大小的值。 他们对应的二进制值分别是: AT_MOST =10000000000000000000000000000000
最前面两位代表模式,分别对应十进制的0,1,2,获取模式int值 和 获取数值int值的方法:
int measureWidth = MeasureSpec.getSize(widthMeasureSpec); int measureHeight = MeasureSpec.getSize(heightMeasureSpec); int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec); int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);
上面我们知道了 onMeasure(int widthMeasureSpec, int heightMeasureSpec) 方法参数的意义,下面了解参数对应的三个模式分别对应的意义:
每一个模式都对应的xml布局中的一个值
wrap_content --- MeasureSpec.AT_MOST match_parent --- MeasureSpec.EXACTLY 具体值 --- MeasureSpec.UNSPECIFIED
注意:当模式是MeasureSpec.AT_MOST时,即wrap_content时,需要将大小设置一个数值。
首先先了解几个需要用到的方法:
(1)、setMeasuredDimension
这个方法和onMeasure()方法类似。其实这个方法的作用就是 设置当前View的宽高。
(2)、onLayout
这个方法就和方法类似了,不过少了第一个参数boolean changed
这个方法的目的是用于当前ViewGroup中的子控件的布局,再看方法,只要是继承ViewGroup的类都必须要重写该方法,来实现该控件内部子控件的布局情况。我们写一个自定义类继承ViewGroup实现Linearlayout垂直排列的效果看下:
public class XViewGroup extends ViewGroup{ public XViewGroup(Context context) { super(context); } public XViewGroup(Context context, AttributeSet attrs) { super(context, attrs); } public XViewGroup(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int measureWidth = MeasureSpec.getSize(widthMeasureSpec); int measureHeight = MeasureSpec.getSize(heightMeasureSpec); int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec); int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec); // 计算所有子控件需要用到的宽高 int height = 0; //记录根容器的高度 int width = 0; //记录根容器的宽度 int count = getChildCount(); //记录容器内的子控件个数 for (int i=0;i<count;i ) { //测量子控件 View child = getChildAt(i); measureChild(child, widthMeasureSpec, heightMeasureSpec); //获得子控件的高度和宽度 int childHeight = child.getMeasuredHeight(); int childWidth = child.getMeasuredWidth(); //得到最大宽度,并且累加高度 height = childHeight; width = Math.max(childWidth, width); } // 设置当前View的宽高 setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: width, (measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: height); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { int top = 0; int count = getChildCount(); for (int i=0;i<count;i ) { View child = getChildAt(i); int childHeight = child.getMeasuredHeight(); int childWidth = child.getMeasuredWidth(); //该子控件在父容器的位置 , 高度是之前所有子控件的高度和开始 ,从上往下排列,就实现了类似Linearlayout布局垂直排列的布局 child.layout(0, top, childWidth, top childHeight); //以父容器左上角为原点进行布局 top = childHeight; } } }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
服务器在现在市场中的种类非常多,我们在选择的时候,除了需要看看具体使用的场所范围之外,也可以看看ERP服务器托管的好处主要有哪些,通过了解具体的托管方式,也可以看看在选择的时候哪一种方式会更好,只有掌握一定的方式,也可以保障服务器在使用过程中的安全性。
由于目前的台湾服务器服务商较多,市场竞争大,很多用户比较担心购买台湾服务器的性能、质量不好,所以需要在购买前对台湾服务器进行各项性能测试,那么你们知道台湾服务器要
越来越多的用户租用海外服务器建站,因为互联网连接全球,国内企业开始关注海外市场。海外服务器不需要备案,可以让企业业务快速上线。近年来,IDC服务提供商扩大了海外服务器市场,使用了更多的群英网络美国服务器和香港服务器。台湾服务器、新加坡服务器、韩国服务器等也是最近兴起的非常好的选择。
通常,企业用户会选择将购买的服务器托管到数据中心进行服务器托管;他们也会直接选择在数据中心租用服务器。因此,不难看出,企业仍然需要物理机柜。但说到服务器机柜,我们可能不太清楚这个概念。今天,让我们来看看服务器机柜的概念。
一般而言,G口大带宽服务器适合部署哪些业务呢?租借国内服务器的用户一般对带宽的要求比较高,毕竟国内虽然离中国大陆地区比较远,但是带宽资源非常丰富,尤其是像群英网络这样的专业国内机房服务商,提供直连线路的 G口较远,所以这里群英网络带宽资源非常丰富。