@Override protectedvoidonMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); intmeasuredWidth=0; intmeasuredHeight=0; finalintchildCount= getChildCount(); measureChildren(widthMeasureSpec, heightMeasureSpec);////measure all children view width and height.
intwidthSpaceSize= MeasureSpec.getSize(widthMeasureSpec); intwidthSpecMode= MeasureSpec.getMode(widthMeasureSpec); intheightSpaceSize= MeasureSpec.getSize(heightMeasureSpec); intheightSpecMode= MeasureSpec.getMode(heightMeasureSpec); if (childCount == 0) {// If ViewGroup has not child, the size of viewGroup will be 0 setMeasuredDimension(0, 0); } elseif (widthSpecMode == MeasureSpec.AT_MOST && heightSpecMode == MeasureSpec.AT_MOST) {//Handle wrap_content finalViewchildView= getChildAt(0); measuredWidth = childView.getMeasuredWidth() * childCount; measuredHeight = childView.getMeasuredHeight(); setMeasuredDimension(measuredWidth, measuredHeight); } elseif (widthSpecMode == MeasureSpec.AT_MOST) { finalViewchildView= getChildAt(0); measuredWidth = childView.getMeasuredWidth() * childCount; setMeasuredDimension(measuredWidth, heightSpaceSize); } elseif(heightSpecMode == MeasureSpec.AT_MOST){ finalViewchildView= getChildAt(0); measuredHeight = childView.getMeasuredHeight(); setMeasuredDimension(widthSpaceSize, measuredHeight); } }
onLayout()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
@Override protectedvoidonLayout(boolean changed, int l, int t, int r, int b) { intchildLeft=0; finalintchildCount= getChildCount(); mChildrenSize = childCount;
for (inti=0; i < childCount; i++) {//Traverse all child and put them at a right place finalViewchildView= getChildAt(i); if (childView.getVisibility() != View.GONE) { finalintchildWidth= childView.getMeasuredWidth(); mChildWidth = childWidth; childView.layout(childLeft, 0, childLeft + childWidth, childView.getMeasuredHeight());//(l,t,r,b) childLeft += childWidth; } } }