如何使Andorid的ActionBar / TabWidget LinearLayout包装它的孩子

时间:2015-01-19 11:56:59

标签: android android-layout android-actionbar android-linearlayout android-tabhost

我尝试实现可滚动标签,其中每个标签的大小都根据其内容大小进行调整。

我尝试了两种方法:ActionBar和TabHost。在这两种情况下,我都可以调整标签大小。

为了实现这一点,我添加了给定Tab后,每个Tab上的setLayoutProperites。在两种情况下都是相同的方法。权重更改为0,宽度设置为WRAP_CONTENT。在TabHost相关示例下面。

LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) tabHost.getTabWidget().getChildTabViewAt(i).getLayoutParams();
        params.width = LinearLayout.LayoutParams.WRAP_CONTENT;
        params.weight=0;
        tabHost.getTabWidget().getChildTabViewAt(i).setLayoutParams(params);

我留下了与LinearLayout(LL)大小相关的问题。 LL的大小大于其所有孩子的大小:

标签尺寸符合预期:Image-1

LL已标记且其大小为大(顶部),TabView已标记 - 其大小正确(底部):Image-2

TabHost案例的布局xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<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:fillViewport="true"
        android:orientation="vertical">

        <HorizontalScrollView
            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="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:orientation="horizontal" />
        </HorizontalScrollView>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0" />

        <android.support.v4.view.ViewPager
            android:id="@+id/tabHost_viewpager"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />
    </LinearLayout>

</TabHost>

1 个答案:

答案 0 :(得分:2)

我知道了。它可能对某人有用......一个人调用LinearLayout,其标签为setMeasureWithLargestChildEnabled(false);.像这样:

tabHost.getTabWidget().setMeasureWithLargestChildEnabled(false);