I want to get rid of horizontal scroll bar in TabHost. It\'s there even if TabWidget is on top.
Below is my xml layout.
Nest it into a Linearlayout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal">
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
...
...
...
</TabHost>
</LinearLayout>
Putting this worked for me in the frame layout:
android:foreground="@null"
android:layout_marginTop="-6dp"