I have a vertical, set height (300px) LinearLayout (LL) with 3 nested LLs. 1 and 3rd are set with android:layout_height="wrap_content" and the middle one with android:layout_height="fill_parent". To my dismay, 3rd LL gets pushed out with 2nd one filling parent layout right to the bottom. How do I achieve desired effect since I want potentially resize the outside container with the middle portion expanding and contracting to accommodate the change

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Turned out (Thanks Mark Murphy for the answer) that all I was looking for was to set middle row to

layout_height="0px" and layout_weight="1"

If, after all the wrap_content and fixed-sized items are allocated for along an axis (horizontal or vertical), there is still room on that axis left over, LinearLayout then allocates the remaining space to those widgets with specified weights, in proportion to the weight.

link|improve this answer
thanks a lot, worked out well – Amith GC Jul 19 '10 at 9:48
2  
layout_weight only for the 2nd LL is the key here. – Artem Russakovskii May 20 '11 at 2:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.