2

我有以下简单的布局

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

    <RelativeLayout
        android:id="@+id/answerMainFrame"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/background"
        android:isScrollContainer="true"
        android:onClick="toAnswer" >

        <ImageView
            android:id="@+id/answer_img"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:contentDescription="@string/question_img_cd" />

        <TextView
            android:id="@+id/answer"
            style="@style/Question"
            android:layout_below="@id/answer_img" />
    </RelativeLayout>

</ScrollView>

但有时,根据 ImageView 和 TextView 的大小,它不会填满屏幕的高度。没关系。我只希望屏幕的其余部分是白色而不是黑色。

我尝试将android:background="@color/background"ScrollView 设置为白色,但我得到了相同的结果。

我也尝试设置android:layout_height="wrap_content"为Relativelayout,但它显示警告。

我该怎么办?

谢谢。

4

2 回答 2

3

ScrollView将高度更改为match_parent并将白色设置为背景。所以根据你的代码是这样的:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_width="fill_parent"
                  android:layout_height="match_parent"
                  android:background="@color/background">
...

笔记。 关于的警告RelativeLayout可以很容易地解释。如果你将它的高度设置为wrap_content它就不能这样做,因为它内部的元素需要一组固定的尺寸,它的父级才能执行诸如附加到底部、中心或其他任何事情的事情。

起初我对此也有一些困惑。

于 2012-05-15T08:13:10.700 回答
1

那样做

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff >

<RelativeLayout
    android:id="@+id/answerMainFrame"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/background"
    android:isScrollContainer="true"
    android:onClick="toAnswer" >

    <ImageView
        android:id="@+id/answer_img"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:contentDescription="@string/question_img_cd" />

    <TextView
        android:id="@+id/answer"
        style="@style/Question"
        android:layout_below="@id/answer_img" />
</RelativeLayout> </ScrollView>
于 2012-05-15T08:15:29.047 回答