我有一个框架布局,前面的图像如下所示。在我的框架布局中,我有一个文本视图,但它没有看到,因为它留在前景图像的后面。如何将它放在前景图像的前面?
<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>
答案 0 :(得分:2)
我会将图像放在FrameLayout中作为ImageView,而不是使用前景。然后,您可以更轻松地控制应该绘制各种事物的顺序。 前景总是会覆盖内容。