我正在为使用 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>
我当前的标签看起来像:
但我想让我的标签看起来像:
我尝试了很多东西,但没有得到合适的解决方案。请指导我。