我是Android的新手,我想显示一个TabWidget,其 Tabspec应该具有相同的大小 ...它们里面的内容并不重要...此外,我已经添加了一个HorizontallScrollView因为我想在我的活动中显示8个标签,而不仅仅是3 ...
有人知道我需要添加到我的xml中以使我的8个活动具有相同的标签大小吗?
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbarAlwaysDrawHorizontalTrack="true"
android:scrollbars="horizontal"/>
</HorizontalScrollView>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
谢谢
答案 0 :(得分:0)
通常会创建一个这样的标签:
tabHost.addTab(tabHost.newTabSpec("tag")
.setIndicator("tab title", icon))
.setContent(this));
这会导致 TabHost 创建它选择承载 TabSpec 的视图。但是 setIndicator 过载,它将 View 作为参数。 因此,您可以创建固定宽度的视图,并将 setIndicator 的重载用于 TabSpecs 。