Help me with XML layout.
I have three LinearLayout on activity, all LinearLayout have position vertical (from top to bottom)
- first LinearLayout have android:layout_height="30px", android:layout_width="fill_parent"
- second LinearLayout have android:layout_height="fill_parent", android:layout_width="fill_parent"
- third LinearLayout have android:layout_height="30px",android:layout_width="fill_parent"
But when second LinearLayout set as fill_parent it fill full screen (from first Layout to bottom of screen), and third LinearLayout cant display!
How i need fill the second layout?
Help me