Android:可滚动标签

时间:2010-06-19 15:32:16

标签: android tabs

我正在开发我的第一个Android应用程序。我正在为我的应用程序使用选项卡式布局。我在开发指南上按照教程进行了操作并遇到了问题。本教程只使用了三个选项卡,但我还需要更多选项卡。因此,选项卡会调整大小并组合起来。我希望有人可以告诉我如何让它们滚动,就像使用多个标签时在dolphin浏览器中一样。谢谢!

〜亚伦

3 个答案:

答案 0 :(得分:12)

使用Yoel所说的,只需添加:     android:fillViewport="true和     android:scrollbars="none"

到Horizo​​ntalScrollView,如下所示:

    <HorizontalScrollView 
       android:id="@+id/horizontalScrollView1" 
       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>

答案 1 :(得分:3)

我建议使用HotizontalScrollView包装TabWidget。这样你仍然可以按原样使用标签。

    <HorizontalScrollView 
        android:id="@+id/horizontalScrollView1" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            />
    </HorizontalScrollView>

请务必注意,如果使用较少的标签,则会导致标签不能填满整个屏幕宽度。我目前正在为这个问题寻找解决方案。

答案 2 :(得分:1)

在这种情况下,您可能不想使用制表符。相反,您可以将所有“标签”放在屏幕顶部的水平线性布局中,包含在ScrollView中,如下所示

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content" android:layout_width="fill_parent">
    <LinearLayout 
        android:orientation="horizontal" android:layout_height="wrap_content"
        android:layout_width="fill_parent">

        ...buttons go here...

    </LinearLayout>
</HorizontalScrollView>

我认为这会给你你想要的结果,但请告诉我