如何在底部选项卡的顶部设置TabStrip与android中的drawables

时间:2013-04-10 11:37:10

标签: android android-layout android-widget android-tabhost android-tabs

我正在使用android 4.0开发平板电脑的示例应用程序。此应用程序没有标题栏/操作栏,并具有全屏模式。

在这个应用程序中,我使用Tabwidgets并在底部设置选项卡。一切都运行良好。 现在我想跟踪标签页上的内容:

  • 从标签中删除底部标签条
  • 在标签顶部添加标签条(向上方向)
  • 想要在顶部的标签条上设置一个可绘制的(小指示符)
  • 想要将此抽奖中的移动效果从上次选定的标签添加到当前标签。

我的main.xml是:

<TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" />

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="0"/>
        </LinearLayout>
</TabHost>

我当前的标签如下:

enter image description here

但我想看看我的标签如下:

enter image description here

我尝试过很多东西,但没有得到合适的解决方案。请指导我。

0 个答案:

没有答案