0

我有以下布局

[LLV
Line 1(30%height) : LLH[ Img1 (30% width) | Text1(70%width) ] 
Line 2(30%height) : LLH[ Img2 (30% width) | Text2(70%width) ] 
Line 3(30%height) : LLH[ Img3 (30% width) | Text3(70%width) ] 
]

LLV 是线性布局 垂直方向 LLH 是线性布局 水平方向

如果我添加 weight_sum=1 和 Img (layout_weight=0.3) Text (layout_weight=0.7),现在 30% 对宽度有效

但是如果我对垂直线应用相同的逻辑,我看不到任何 30% 的高度划分

我的 LLH 有 (layout_weight=0.3) 和 (weight_sum=1) 两者,解决这个问题的最佳方法是什么

4

4 回答 4

1

在线性布局中正确使用权重是:

<View android:layout_width="0dp"
      android:layout_weight="0.3"
      android:layout_height="wrap_content"/>

另一个视图应该以类似的方式设置,但使用weight="0.7". 它们的总和为 1,它们将分别覆盖父布局的 30% 和 70%。设置layout_width="0dp"将确定仅尊重权重的视图。

希望这可以帮助

于 2013-08-30T08:23:22.323 回答
1

尝试使用此代码它可能会帮助你..

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

<LinearLayout
    android:id="@+id/layoutmain"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/layout_h1"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:orientation="horizontal"
        android:layout_weight="0.33" >

        <View
            android:id="@+id/view1"
            android:layout_width="0dip"
            android:layout_height="fill_parent"
            android:layout_weight="0.30"
            android:background="#123456" />

             <LinearLayout
        android:id="@+id/layout_h11"
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:layout_weight="0.7" >


                 <ImageView
                     android:id="@+id/imageView1"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:src="@drawable/ic_launcher"
                     android:layout_weight="0.3" />

                 <TextView
                     android:id="@+id/textView1"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:text="TextView"
                     android:layout_weight="0.7" />

        </LinearLayout>

    </LinearLayout>

       <LinearLayout
        android:id="@+id/layout_h2"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:orientation="horizontal"
        android:layout_weight="0.34" >

        <View
            android:id="@+id/view2"
            android:layout_width="0dip"
            android:layout_height="fill_parent"
            android:layout_weight="0.30"
            android:background="#123456" />

             <LinearLayout
        android:id="@+id/layout_h22"
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:layout_weight="0.7" >


                 <ImageView
                     android:id="@+id/imageView2"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:src="@drawable/ic_launcher"
                     android:layout_weight="0.3" />

                 <TextView
                     android:id="@+id/textView2"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:text="TextView"
                     android:layout_weight="0.7" />

        </LinearLayout>

    </LinearLayout>


          <LinearLayout
        android:id="@+id/layout_h3"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:orientation="horizontal"
        android:layout_weight="0.33" >

        <View
            android:id="@+id/view3"
            android:layout_width="0dip"
            android:layout_height="fill_parent"
            android:layout_weight="0.30"
            android:background="#123456" />

             <LinearLayout
        android:id="@+id/layout_h33"
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:layout_weight="0.7" >


                 <ImageView
                     android:id="@+id/imageView3"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:src="@drawable/ic_launcher"
                     android:layout_weight="0.3" />

                 <TextView
                     android:id="@+id/textView3"
                     android:layout_width="0dip"
                     android:layout_height="fill_parent"
                     android:text="TextView"
                     android:layout_weight="0.7" />

        </LinearLayout>

    </LinearLayout>






</LinearLayout>

于 2013-08-30T08:34:23.587 回答
0

对于每个 LLH,您应该将高度设置为 0px 。

对于 LLH 中的每个内部视图,您应该将宽度设置为 0px。

另外,请尽量避免使用浮点值作为权重。您可以轻松地将其设置为 30 而不是 0.3 ,而 weightSum 将为 100。

如果事情仍然不像您想要的那样,您可以在容器的末尾放置一个新的 View 标签,这将填补剩余的空白并且不会在其中显示任何特殊内容。

于 2013-08-30T08:31:23.483 回答
0
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight=".33"
        android:orientation="horizontal" >

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.3" />

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.7" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight=".33"
        android:orientation="horizontal" >

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.3" />

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.7" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight=".33"
        android:orientation="horizontal" >

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.3" />

        <View
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="0.7" />
    </LinearLayout>
</LinearLayout>

那应该工作

于 2013-08-30T08:37:49.267 回答