我正在开发一个应用程序,我必须实现操作栏嵌套选项卡
谁能建议我如何处理这种情况
所需的 o/p
当我使用压缩的 tabhost innertabs
通过将 HorizontalScrollView 添加到 TabHost 解决的问题
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:fillViewport="true"
android:scrollbars="none" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#D8D8D8"
android:showDividers="middle" >
</TabWidget>
</HorizontalScrollView>
添加 HorizontalScrollView 后的屏幕截图