FrameLayout的顺序,以及elevation对其顺序的影响,CardView的上层放了一个Button,为什么Button看不到了

Android中FrameLayout(帧布局)默认的 下一个会自动覆盖上一个
FrameLayout的顺序,以及elevation对其顺序的影响,CardView的上层放了一个Button,为什么Button看不到了_第1张图片
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

            android:layout_width="120dp"
        android:layout_height="120dp"
        android:background="@color/red"/>

            android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@color/yellow"/>

            android:layout_width="60dp"
        android:layout_height="60dp"
        android:background="@color/gray"/>



设置elevation能改变FrameLayout的顺序,有阴影的时候,将不会遵循默认的自动覆盖逻辑elevation最大的值会在最上层
FrameLayout的顺序,以及elevation对其顺序的影响,CardView的上层放了一个Button,为什么Button看不到了_第2张图片
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

            android:layout_width="120dp"
        android:layout_height="120dp"
        android:background="@color/red"/>

            android:elevation="1dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@color/yellow"/>

            android:layout_width="60dp"
        android:layout_height="60dp"
        android:background="@color/gray"/>



这样就可以解释View覆盖的问题了,比如:我明明在CardView的上层放了一个TextView,为什么TextView看不到了??? 效果如下
FrameLayout的顺序,以及elevation对其顺序的影响,CardView的上层放了一个Button,为什么Button看不到了_第3张图片
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

            android:layout_width="200dp"
        android:layout_height="200dp"
        app:cardBackgroundColor="@color/red"
        />

            android:layout_width="100dp"
        android:layout_height="60dp"
        android:background="@color/yellow"
        android:text="button"/>

从上面的效果中可以看出,TextView中我明明设置了背景,并且处于最上层,但是效果图中却没有。这是因为,CardView默认有elevation属性,所有会自动处于最上层


FrameLayout的顺序,以及elevation对其顺序的影响,CardView的上层放了一个Button,为什么Button看不到了_第4张图片
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

            android:layout_width="200dp"
        android:layout_height="200dp"
        app:cardElevation="0dp"
        app:cardBackgroundColor="@color/red"
        />

            android:layout_width="100dp"
        android:layout_height="60dp"
        android:background="@color/yellow"
        android:text="button"/>

将cardElevation设置为0dp后,这样TextView就能正常显示了。

你可能感兴趣的:(Android)