FileDocCategorySizeDatePackage
ButtonGridLayout.javaAPI DocAndroid 1.5 API3448Wed May 06 22:42:46 BST 2009com.android.phone

ButtonGridLayout

public class ButtonGridLayout extends android.view.ViewGroup

Fields Summary
private final int
mColumns
Constructors Summary
public ButtonGridLayout(android.content.Context context)

    
       
        super(context);
    
public ButtonGridLayout(android.content.Context context, android.util.AttributeSet attrs)

        super(context, attrs);
    
public ButtonGridLayout(android.content.Context context, android.util.AttributeSet attrs, int defStyle)

        super(context, attrs, defStyle);
    
Methods Summary
private intgetRows()

        return (getChildCount() + mColumns - 1) / mColumns; 
    
protected voidonLayout(boolean changed, int l, int t, int r, int b)

        int y = mPaddingTop;
        final int rows = getRows();
        final View child0 = getChildAt(0);
        final int yInc = (getHeight() - mPaddingTop - mPaddingBottom) / rows;
        final int xInc = (getWidth() - mPaddingLeft - mPaddingRight) / mColumns;
        final int childWidth = child0.getMeasuredWidth();
        final int childHeight = child0.getMeasuredHeight();
        final int xOffset = (xInc - childWidth) / 2;
        final int yOffset = (yInc - childHeight) / 2;
        
        for (int row = 0; row < rows; row++) {
            int x = mPaddingLeft;
            for (int col = 0; col < mColumns; col++) {
                int cell = row * mColumns + col;
                if (cell >= getChildCount()) {
                    break;
                }
                View child = getChildAt(cell);
                child.layout(x + xOffset, y + yOffset, 
                        x + xOffset + childWidth, 
                        y + yOffset + childHeight);
                x += xInc;
            }
            y += yInc;
        }
    
protected voidonMeasure(int widthMeasureSpec, int heightMeasureSpec)

        int width = mPaddingLeft + mPaddingRight;
        int height = mPaddingTop + mPaddingBottom;
        
        // Measure the first child and get it's size
        View child = getChildAt(0);
        child.measure(MeasureSpec.UNSPECIFIED , MeasureSpec.UNSPECIFIED);
        int childWidth = child.getMeasuredWidth();
        int childHeight = child.getMeasuredHeight();
        // Make sure the other children are measured as well, to initialize
        for (int i = 1; i < getChildCount(); i++) {
            getChildAt(0).measure(MeasureSpec.UNSPECIFIED , MeasureSpec.UNSPECIFIED);
        }
        // All cells are going to be the size of the first child
        width += mColumns * childWidth;
        height += getRows() * childHeight;
        
        width = resolveSize(width, widthMeasureSpec);
        height = resolveSize(height, heightMeasureSpec);
        setMeasuredDimension(width, height);