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
|
I have LinearLayout, and I am trying to make the child elements to be 100%. so far I have this
while I want them to be
what properties should I change?? I tried several such as layout_width
| ||||
feedback
|
|
Set LinearLayout orientation to vertical
And make all elements fill parent. | |||
|
feedback
|
|
You should change orientation property of your LinearLayout to vertical | |||
|
feedback
|