Android RelativeLayout zIndex不起作用(不再)

时间:2019-01-23 13:53:24

标签: android android-relativelayout

我不明白这个问题。我很确定我曾经这样做,但是在这种情况下,不会遵循zindex的顺序,并且下面的TextView隐藏在按钮后面:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
    android:text="Button"
    android:layout_width="match_parent"
    android:layout_height="50dp" />
<TextView
    android:textColor="@color/black"
    android:text="TextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</RelativeLayout>

enter image description here

我已经重新启动了Android Studio,但更糟糕的是,这在我的设备上也是如此,因此它不是Android Studio的错误。到底是什么问题?

2 个答案:

答案 0 :(得分:1)

请使用海拔高度

android:elevation="10dp"

在这里您可以看到自己的solution

答案 1 :(得分:0)

如果您向“相对布局”中添加任何视图,则在不使用诸如layout_above / layout_below / layout_leftof或rightof等之类的布局对齐方式的情况下,它将视图放置在另一个视图之上