如何让 Andorid 的 ActionBar/TabWidget LinearLayout 包裹它的 children

How to make Andorid's ActionBar/TabWidget LinearLayout to wrap it's children

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

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

为了实现这一点,我在添加给定选项卡后在每个选项卡上设置了 LayoutProperites。在这两种情况下,方法相同。权重更改为 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 的大小大于其所有 children :

的大小

标签大小符合预期: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>

我想通了。它可能对某些人有用...有人调用具有选项卡的 LinearLayout setMeasureWithLargestChildEnabled(false);。像这样:

tabHost.getTabWidget().setMeasureWithLargestChildEnabled(false);