设置ScrollView权重使View不显示

时间:2014-06-22 20:02:46

标签: android android-layout android-scrollview android-layout-weight

我试图将50%的高度设置为ScrollView。为此,我使用了android:layout_height="0dp"android:layout_weight="0.5",但之后没有显示ScrollView和LinearLayout。这是我的.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout    
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView       
        android:id="@+id/registerProductTitle"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_marginTop="20dip"
        android:layout_marginBottom="20dip"
        android:gravity="center"
        android:text="@string/registerProductTitle"
        android:textSize="12pt">
    </TextView>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp" // 50% height
        android:layout_weight="0.5" // 50% height
        android:layout_marginLeft="5dip"
        android:layout_marginRight="5dip">

        <TableLayout
            android:id="@+id/mainTable"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:paddingLeft="3dip"
            android:paddingRight="3dip"
            android:shrinkColumns="1"
            android:stretchColumns="*">

            <TableRow>
                <TextView
                    android:id="@+id/productLabel"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="@string/productLabel"
                    android:textSize="10pt">
                </TextView>

                <EditText
                    android:id="@+id/productName"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:hint="@string/productTextHolder"
                    android:inputType="textPersonName" >
                </EditText>
            </TableRow>         
        </TableLayout> 
    </ScrollView>       

    <LinearLayout // This Layout is not being displayed
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:weightSum="1"
        android:gravity="bottom"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/buttonSaveProduct"
            style="?android:attr/buttonStyleSmall"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:layout_width="0dip"
            android:layout_weight="1"
            android:layout_height="50dp"
            android:layout_gravity="bottom"
            android:text="@string/saveProduct" />
    </LinearLayout>
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

如果您正在为LinearLayout的子项使用weight属性,请确保为每个子项定义它,或者您可以获得有趣的输出。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout    
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView       
        android:id="@+id/registerProductTitle"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_marginTop="20dip"
        android:layout_marginBottom="20dip"
        android:gravity="center"
        android:text="@string/registerProductTitle"
        android:layout_weight="0.25"
        android:textSize="12pt">
    </TextView>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.5"
        android:layout_marginLeft="5dip"
        android:layout_marginRight="5dip">

        <TableLayout
            android:id="@+id/mainTable"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:paddingLeft="3dip"
            android:paddingRight="3dip"
            android:shrinkColumns="1"
            android:stretchColumns="*">

            <TableRow>
                <TextView
                    android:id="@+id/productLabel"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:text="@string/productLabel"
                    android:textSize="10pt">
                </TextView>

                <EditText
                    android:id="@+id/productName"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:hint="@string/productTextHolder"
                    android:inputType="textPersonName" >
                </EditText>
            </TableRow>         
        </TableLayout> 
    </ScrollView>       

    <LinearLayout
        android:layout_weight="0.5"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:weightSum="1"
        android:gravity="bottom"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/buttonSaveProduct"
            style="?android:attr/buttonStyleSmall"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:layout_width="0dip"
            android:layout_weight="1"
            android:layout_height="50dp"
            android:layout_gravity="bottom"
            android:text="@string/saveProduct" />
    </LinearLayout>
</LinearLayout>

我为下面的LinearLayout和上面的TextView添加了权重。

在此处查看更多信息:Android Developers | LinerLayout

答案 1 :(得分:0)

当您在代码中重新设置视图的权重时,您应该像滚动视图一样重新设置其他视图的LinerLayout权重。