如何实现操作栏嵌套选项卡

时间:2015-06-05 13:24:24

标签: android android-viewpager android-actionbar-tabs

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

任何人都可以建议我如何处理这种情况

必需o / p

enter image description here

当我使用tabhost innertabs compresed enter image description here

通过将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

后的屏幕截图

enter image description here

0 个答案:

没有答案