LinearLayout is one of the basic layouts in Android which arranges its children one after the other, horizontally or vertically.
0
votes
3answers
86 views
+50
Got Warning : this linearlayout layout or its framelayout parent is possibly useless
<TabHost
android:id="@+id/tabHost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
...
0
votes
2answers
44 views
+50
Tracking scrolling tableRows with respect to a LinearLayout in android
Inside a RelativeLayout; I have a TableLayout in a ScrollView, and a horizontal LinearLayout. My view is working fine: as the table scrolls in the background, the LinearLayout is static in the ...