layout_weight在模拟器中工作,而不是在设备上工作

时间:2016-10-02 21:18:32

标签: android android-linearlayout

我有一个线性布局,有两个列表视图,一个文本视图和另一个线性布局来保存一些按钮。我希望第二个listview的高度是第一个的两倍。我已将两个列表视图的高度设置为0dp,并给第一个layout_weight为1,第二个为权重2,然后将包含视图的weightSum设置为3.这是实际布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:weightSum="3"
    android:layout_height="match_parent">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:id="@+id/categoryList" />
    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2"
        android:id="@+id/itemList" />
    <TextView
        android:id="@+id/walletStr"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/cancelBtn"
            android:text="cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/buyBtn"
            android:text="buy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

在模拟器上,这会产生所需的效果,但在实际设备上,几乎所有空间都会进入顶级列表视图。

有什么想法吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

线性布局不仅有2个列表,也有更多的组件,你必须考虑。 weightSum应该划分为此线性布局的所有组件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:weightSum="7"
    android:layout_height="match_parent">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2"
        android:id="@+id/categoryList" />
    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="4"
        android:id="@+id/itemList" />
    <TextView
        android:id="@+id/walletStr"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"/>
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.5">
        <Button
            android:id="@+id/cancelBtn"
            android:text="cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/buyBtn"
            android:text="buy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>