lots of button will be added in my viewgroup, so I need my viewgroup'height is wrap_content, but whatever I set height in code or xml, it doesn't work, the viewgroup'height always match_parent, so what's wrong with it? how can I set the height is wrap_content?
CustomViewGroup:
public class CustomViewGroup extends ViewGroup {
private final static String TAG = "CustomViewGroup";
private final static int VIEW_MARGIN = 2;
public CustomViewGroup(Context context) {
super(context);
}
public CustomViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Log.d(TAG, "widthMeasureSpec = " + widthMeasureSpec
+ " heightMeasureSpec" + heightMeasureSpec);
for (int index = 0; index < getChildCount(); index++) {
final View child = getChildAt(index);
// measure
child.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onLayout(boolean arg0, int arg1, int arg2, int arg3, int arg4) {
Log.d(TAG, "changed = " + arg0 + " left = " + arg1 + " top = " + arg2
+ " right = " + arg3 + " botom = " + arg4);
final int count = getChildCount();
int row = 0;// which row lay you view relative to parent
int lengthX = arg1; // right position of child relative to parent
int lengthY = arg2; // bottom position of child relative to parent
for (int i = 0; i < count; i++) {
final View child = this.getChildAt(i);
int width = child.getMeasuredWidth();
int height = child.getMeasuredHeight();
Log.i(TAG, "width = " + width + " height = " + height);
lengthX += width + VIEW_MARGIN;
lengthY = row * (height + VIEW_MARGIN) + VIEW_MARGIN + height
+ arg2;
Log.i(TAG, "lengthX = " + lengthX + " lengthY = " + lengthY + " row = " + row);
// if it can't drawing on a same line , skip to next line
if (lengthX > arg3) {
lengthX = width + VIEW_MARGIN + arg1;
row++;
lengthY = row * (height + VIEW_MARGIN) + VIEW_MARGIN + height
+ arg2;
}
child.layout(lengthX - width, lengthY - height, lengthX, lengthY);
}
}
}
public class ViewGroupTest extends Activity {
CustomViewGroup vg;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view_group_test);
LinearLayout l = (LinearLayout) findViewById(R.id.lllll);
Button b1 = new Button(this);
b1.setId(1);
b1.setText("hello");
vg = new CustomViewGroup(this);
LinearLayout.LayoutParams pr = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,200);
vg.setBackgroundColor(Color.BLUE);
vg.setLayoutParams(pr);
vg.addView(b1);
Button b2 = new Button(this);
b2.setId(2);
b2.setText("world");
vg.addView(b2);
Button b3 = new Button(this);
b3.setId(3);
b3.setText("world 33333");
vg.addView(b3);
Button b4 = new Button(this);
b4.setId(4);
b4.setText("world44444444");
vg.addView(b4);
b3.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Button b = new Button(ViewGroupTest.this);
b.setText("world");
vg.addView(b);
}
});
}
}