我有一个带有前景图像的框架布局,如下所示。在我的框架布局中,我有一个文本视图,但看不到它,因为它位于前景图像的后面。如何将它放在前景图像的前面?
<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>