我有以下简单的布局
<?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,但它显示警告。
我该怎么办?
谢谢。