There are many solutions on the Internet, but they are all complex and not needed. If you are trying to make the tabs at the top of the screen scrollable, then you can use this simple implementation shown below. Hope this helps.
<HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content" android:fillViewport="true" android:scrollbars="none"> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </HorizontalScrollView>
source share