show/hide this revision's text 2 Added information

How do I programmatically control the position size of a child view in an Android AbsoluteLayout

The documentation at http://code.google.com/android/reference/android/widget/AbsoluteLayout.html says:

onLayout(boolean changed, int l, int t, int r, int b)
//Called from layout when this view should assign a size and position to each of its children.

So I overrode it like this:

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
	super.onLayout(changed, l, t, r, b);
	Log.d("test", "In MainLayout.onLayout");
	int childCount = getChildCount();
	for (int childIndex = 0; childIndex < childCount; childIndex++) {
		getChildAt(childIndex).setLayoutParams(new LayoutParams(100, 100, 100, 100));
	}
	super.onLayout(changed, l, t, r, b);
}

But still all of the child elements are located at 0,0 and with their default sizes.

I am declaring the child elements (buttons) in the XML for the layout.

This correctly sets the position of the buttons but not the size. The size is being taken from what is defined in the XML (it's a required attribute).

show/hide this revision's text 1

How do I programmatically control the position of a child view in an Android AbsoluteLayout

The documentation at http://code.google.com/android/reference/android/widget/AbsoluteLayout.html says:

onLayout(boolean changed, int l, int t, int r, int b)
//Called from layout when this view should assign a size and position to each of its children.

So I overrode it like this:

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
	super.onLayout(changed, l, t, r, b);
	Log.d("test", "In MainLayout.onLayout");
	int childCount = getChildCount();
	for (int childIndex = 0; childIndex < childCount; childIndex++) {
		getChildAt(childIndex).setLayoutParams(new LayoutParams(100, 100, 100, 100));
	}
}

But still all of the child elements are located at 0,0 and with their default sizes.

I am declaring the child elements (buttons) in the XML for the layout.