FragmentTabHost with horizontal scroll

Based on my experience, the FragmentTabHost doesn’t care much about the xml definitions, things must be made programmatically. I got it working by leaving out the HorizontalScrollView from the xml and adding it in my onCreate for the FragmentActivity. The xml: <android.support.v4.app.FragmentTabHost xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:id=”@android:id/tabhost” android:layout_width=”match_parent” android:layout_height=”match_parent” > <LinearLayout android:layout_width=”match_parent” android:layout_height=”match_parent” android:orientation=”vertical” > <TabWidget android:id=”@android:id/tabs” … Read more