如何在布局中为布局添加适当的权重

时间:2013-08-30 08:18:08

标签: android android-layout

我有以下布局

[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)文本(layout_weight = 0.7)

,那么30%的宽度效果很好

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

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

4 个答案:

答案 0 :(得分: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"将确定仅尊重重量的视图。

希望这有帮助

答案 1 :(得分: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>

答案 2 :(得分:0)

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

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

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

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

答案 3 :(得分: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>

那应该有用