私は非常に単純な考えをしたいだけです:
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のみを表示します..