以下に示す前景画像を含むフレーム レイアウトがあります。私のフレーム レイアウトにはテキスト ビューがありますが、前景画像の後ろにあるため表示されません。前景画像の上に表示するにはどうすればよいですか?
<FrameLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/foreground_image"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/myImageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitStart"
android:src="@drawable/dreams" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/myImageView"
android:layout_gravity="center"
android:text="MY TEXT"
android:textColor="#ffffff"
android:textSize="20sp" />
</RelativeLayout>
</FrameLayout>