4

我在标签视图中使用了六个标签。在纵向模式下,标签大小变得非常小。所以我想水平滚动标签,以便每个标签的大小保持原始大小。我们怎么能做到这一点?

4

2 回答 2

3

这是你想要的?http://blog.uncommons.org/2011/04/18/scrolling-tabs-in-android/

于 2011-07-26T07:19:33.530 回答
3

网上有很多解决方案,但它们都很复杂且不必要。如果您试图使屏幕顶部的选项卡可滚动,那么您可以使用我在下面显示的这个简单实现。希望这可以帮助。

<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>
于 2013-02-23T14:26:04.800 回答