我正在使用TabHost和TabWidget为Android应用程序创建一些选项卡。我看到标签垂直显示在另一个旁边。有没有办法制作水平对齐的标签(一个在另一个上面)?。
我正在创建这样的标签:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is a tab" />
<TextView
android:id="@+id/textview2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is another tab" />
</FrameLayout>
</LinearLayout>
这是我需要做的事情:
答案 0 :(得分:6)
试试这个:https://code.google.com/p/themissingtabwidget/。这是一个基于原始选项卡窗口小部件的开源实现,也可以在水平模式下工作。
答案 1 :(得分:1)
我不确定,但我认为您无法使用默认行为。 Android的标签支持对我来说似乎有点笨拙。但是,如果你确实这样做了,请告诉我 - 我可以自己使用它!
FWIW,我使用图像按钮和其他控制元素进行了自己的标签行为。在我的情况下,我试图提出没有使用太多屏幕空间的标签。