1

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

<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>
4

1 回答 1

2

我会将图像作为 ImageView 放置在 FrameLayout 中,而不是使用前景。然后您可以更轻松地控制各种事物的绘制顺序。前景将始终覆盖内容。

于 2016-04-24T19:42:37.920 回答