package com.jiuqi.njt.adapter; public class GridViewParam { private int width; private float textsize; private float btnWidth; private float btnHeight; private float imageWidth; private float padding; private float margin; public float getMargin() { return margin; } public void setMargin(float margin) { this.margin = margin; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public double getTextsize() { return textsize; } public void setTextsize(float textsize) { this.textsize = textsize; } public double getBtnWidth() { return btnWidth; } public void setBtnWidth(float btnWidth) { this.btnWidth = btnWidth; } public double getBtnHeight() { return btnHeight; } public void setBtnHeight(float btnHeight) { this.btnHeight = btnHeight; } public double getImageWidth() { return imageWidth; } public void setImageWidth(float imageWidth) { this.imageWidth = imageWidth; } /** * @return the padding */ public float getPadding() { return padding; } /** * @param padding the padding to set */ public void setPadding(float padding) { this.padding = padding; } }