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 に白の を設定しようとしましたが、同じ結果になります。

Relativelayout にも設定しようとしましandroid:layout_height="wrap_content"たが、警告が表示されます。

私は何をすべきか?

ありがとう。

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 に答える