0

私は非常に単純な考えをしたいだけです:

ImageView を全画面表示にしたいのですが、単純な TextView を下に配置し、Over ではなく下に配置したいと考えています。

いくつかの組み合わせを試しましたが、何もうまくいきませんでした..

これが私の現在の基本的な 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="wrap_content">
    <ImageView
        android:id="@+id/imgset"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:src="@drawable/creditview" />

    <RelativeLayout
    android:id="@+id/layoutimgset"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This spot is for Ad"
        android:textStyle="bold"
        android:textColor="@color/black"
        android:background="@color/white" />

    </RelativeLayout>
</LinearLayout>

これはImageViewのみを表示します..

4

1 に答える 1

0

これを ImageView に使用してみてください:

android:layout_weight="1" 

この場合、RelativeLayout は必要ありません。または、すべてを RelativeLayout に入れて使用します

android:layout_below="@+id/imgset"

あなたのTextViewのために

于 2013-09-02T11:09:43.770 に答える