0

我得到了这个列表视图:

            <ListView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:id="@+id/listView2"
                android:divider="#CCCCCC"
                android:dividerHeight="1px"
                android:cacheColorHint="#00000000" />

在列表视图中,我将加载一个线性布局:

        <LinearLayout
            android:layout_weight="1" 
            android:layout_height="fill_parent"
            android:layout_width="fill_parent"
            android:background="#ffffff"/>

在那个 LinearLayout 中,我的权重为 1,因此当列表加载时,它将在所有项目之间平均分配。现在的问题是这不起作用,这甚至可能在列表视图中加载重量和加载项目吗?

4

1 回答 1

1

weight 属性用于 LinearLayout您的父布局应该是 LinearLayout。所以我不认为你写的代码是可能的场景。

每当您指定重量时,宽度或高度都应设置为 0dp。

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="5">

<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="1" />

<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="3"
    android:text="2" />

<Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="3" />

</LinearLayout>
于 2013-06-07T08:57:27.673 回答