How do I programmatically control the size of a child view in an Android AbsoluteLayout - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T13:43:00Zhttp://stackoverflow.com/feeds/question/562267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/562267/how-do-i-programmatically-control-the-size-of-a-child-view-in-an-android-absolute0How do I programmatically control the size of a child view in an Android AbsoluteLayoutfantius2009-02-18T18:24:25Z2009-03-10T17:07:59Z
<p>The documentation at <a href="http://code.google.com/android/reference/android/widget/AbsoluteLayout.html" rel="nofollow">http://code.google.com/android/reference/android/widget/AbsoluteLayout.html</a> says:</p>
<pre><code>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.
</code></pre>
<p>So I overrode it like this:</p>
<pre><code>@Override
protected void onLayout(boolean changed, int l, int t, int r, int 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);
}
</code></pre>
<p>I am declaring the child elements (buttons) in the XML for the layout.</p>
<p>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).</p>
http://stackoverflow.com/questions/562267/how-do-i-programmatically-control-the-size-of-a-child-view-in-an-android-absolute/631324#6313240Answer by nderraugh for How do I programmatically control the size of a child view in an Android AbsoluteLayoutnderraugh2009-03-10T17:07:59Z2009-03-10T17:07:59Z<p>Can you post your layout xml?</p>