0

我正在开发一个应用程序,我必须实现操作栏嵌套选项卡

谁能建议我如何处理这种情况

所需的 o/p

在此处输入图像描述

当我使用压缩的 tabhost innertabs 在此处输入图像描述

通过将 Horizo​​ntalScrollView 添加到 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>

添加 Horizo​​ntalScrollView 后的屏幕截图

在此处输入图像描述

4

0 回答 0