How do I programmatically control the size of a child view in an Android AbsoluteLayout - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:43:00Z http://stackoverflow.com/feeds/question/562267 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/562267/how-do-i-programmatically-control-the-size-of-a-child-view-in-an-android-absolute 0 How do I programmatically control the size of a child view in an Android AbsoluteLayout fantius 2009-02-18T18:24:25Z 2009-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 &lt; 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#631324 0 Answer by nderraugh for How do I programmatically control the size of a child view in an Android AbsoluteLayout nderraugh 2009-03-10T17:07:59Z 2009-03-10T17:07:59Z <p>Can you post your layout xml?</p>