布局权重未按预期工作

Layout weight not working as intended

我的 layout_weight 工作时遇到了一些小问题。我正在创建一个自定义 bottomBar。但是我不能让它像我想要的那样伸展。

底部栏视图

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bottom_bar_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/bottom_bar_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="4"
        android:orientation="horizontal"/>
</RelativeLayout>

这是我要添加按钮(项目)的大容器。

底部栏项目

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1">
    <android.support.v7.widget.AppCompatImageView
        android:id="@+id/bottom_bar_item_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@android:drawable/arrow_up_float"/>
    <TextView
        android:id="@+id/bottom_bar_item_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TEXT"/>
</LinearLayout>

这是我动态添加到视图中的项目。但是不知何故视图没有正确拉伸。

但是当我硬编码进去时。它起作用了。那么会不会是layout weight没有动态生效呢?

我如何添加视图(项)

private void updateItems(final List<BottomBarTab> bottomBarTabs) {
    if (bottomBarTabs.size() < TABS_COUNT) {
        throw new RuntimeException("Not enough buttons for bottomBar");
    }

    for (int i = 0; i < TABS_COUNT; i++) {
        bottomBarTabs.get(i).setOnClickListener(this);

        bottomBarTabs.get(i).prepareLayout();
        container.addView(bottomBarTabs.get(i));
    }
}

截图

LayoutWeight 仅赋予布局的内部组件,不赋予父 Linearlayout。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:weightSum="2">
        <android.support.v7.widget.AppCompatImageView
            android:id="@+id/bottom_bar_item_icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
 android:layout_weight="1"
            android:src="@android:drawable/arrow_up_float"/>
        <TextView
            android:id="@+id/bottom_bar_item_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
 android:layout_weight="1"
            android:text="TEXT"/>
    </LinearLayout>
public void prepareLayout() {
    View view = inflate(getContext(), R.layout.bottom_bar_item,this);

    LinearLayout.LayoutParams params =
            new LayoutParams(0,LayoutParams.MATCH_PARENT,LAYOUT_WEIGHT);

    view.setLayoutParams(params);


    if(backgroundColor != null) {
        view.setBackgroundColor(backgroundColor);
    }

    TextView titleText = (TextView) view.findViewById(R.id.bottom_bar_item_text);
    titleText.setText(title);

    AppCompatImageView imageView = (AppCompatImageView) view.findViewById(R.id.bottom_bar_item_icon);
    imageView.setImageResource(iconResId);
}

我更改了 prepareLayout 函数并放置了新的 layoutParams。因为不知何故在 inflation 之后。该视图忽略为其设置的权重。所以我不得不通过代码强制它。也许这是一个 android 错误?