Skip to content Skip to sidebar Skip to footer

Tabs At Bottom Overlapping With The List View

Solution 1:

Update FrameLayout inside your TabHost as below:

<FrameLayout
  android:id="@android:id/tabcontent"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:padding="5dp"

  android:layout_above="@android:id/tabs" />

Post a Comment for "Tabs At Bottom Overlapping With The List View"