I have LinearLayout, and I am trying to make the child elements to be 100%. so far I have this

[E1] [E2] [E3] 

while I want them to be

[E1]  
[E2]  
[E3] 

what properties should I change?? I tried several such as layout_width

link|improve this question

78% accept rate
What did you set layout_width = to? Try 'fill_parent' – G_M Jun 7 '11 at 14:18
feedback

2 Answers

up vote 3 down vote accepted

Set LinearLayout orientation to vertical

android:orientation="vertical"

And make all elements fill parent.

link|improve this answer
feedback

You should change orientation property of your LinearLayout to vertical

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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