我有以下簡單的佈局如何在ScrollView中設置背景顏色?
<?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,但我得到了同樣的結果。
我也嘗試將RelativeDelay設置爲android:layout_height="wrap_content"
,但它顯示警告。
我應該怎麼辦?
謝謝。
非常感謝@thisMayhem。這就像一個魅力。這似乎是一個明顯的答案。我以爲我已經嘗試過那個。 – eskalera
@eskalera一個額外的眼睛卡住時總是有幫助,很高興它的工作 –