理解线性布局的Layout_Weight

时间:2015-01-03 22:29:14

标签: android android-linearlayout android-layout-weight

我正在尝试创建一个包含图像视图的布局和另一个包含2个textview的LinearLayout。我希望imageView占据总布局高度的60%,并且可以通过textViews的布局获取剩余空间。然而问题是图像视图的高度不会达到总高度的60%。它随图像的尺寸而变化。我还没有弄清楚这种行为背后的原因。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/myView”
    android:layout_width="@dimen/my_width"
    android:layout_height="match_parent"
    android:layout_marginBottom="6dp"
    android:orientation="vertical"
    >


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:weightSum="1.0"
        android:orientation="vertical" >


            <ImageView
                android:id="@+id/thumbnail"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_alignParentTop="true"
                android:scaleType="centerCrop"
                android:layout_weight=“0.6”
                android:src="@drawable/ic_launcher"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.40”
            android:layout_below="@+id/imageLayout"
            android:orientation="vertical"
             >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                >
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_marginTop="7dp"
                android:maxLines="1"
                android:paddingLeft="@dimen/my_padding"
                android:paddingRight="@dimen/my_padding"
                android:text=“hello “world/>

            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="20dp"
                android:paddingLeft="16dp"
                android:text=“ty”/>


                <View
                    android:layout_width="0dp"
                    android:layout_height=“match_parent"
                    android:layout_weight="1"
                    ></View>
                <Button
                    android:layout_width="@dimen/but_width"
                    android:layout_height="@dimen/but_height"
                    android:layout_gravity="right|bottom"
                    android:text=“button”

                    />

                </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    </FrameLayout>

最好的问候

1 个答案:

答案 0 :(得分:0)

视图的宽度和高度不仅仅取决于layout_weight属性。例如,它可以取决于其子项的大小(如果它是一个视图组)。您必须始终避免使用嵌套布局,因为它使用更多内存。您可以使用一个相对布局来代替框架布局和几个线性布局。