半透明叠加在不同的视图上显示不同的效果

Posted

技术标签:

【中文标题】半透明叠加在不同的视图上显示不同的效果【英文标题】:Translucent overlay shows different effects on different views 【发布时间】:2020-10-24 23:43:01 【问题描述】:

我有一个 AppBarLayout、LinearLayout 和一个 BottomNavigationView。我想在所有这些上方添加一个半透明的白色覆盖,但我不知道为什么我的 AppBarLayout 和 LinearLayout 上方会出现这种略带灰色的颜色。这是因为视图具有不同的高度吗?是否有可能在不改变它们的高度的情况下在我的其他两个布局上的 BottomNavigationView 上获得相同的效果?

Without Overlay With Overlay

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity"
    android:background="@android:color/white">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_
        android:id="@+id/appBar"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_
        android:background="@android:color/white">

        <RelativeLayout
            android:layout_
            android:layout_>

            <TextView
                android:layout_
                android:layout_
                android:text="Title"
                android:textColor="@android:color/black"
                android:textSize="20sp"
                android:layout_centerInParent="true"/>

            <ImageButton
                android:id="@+id/buttonMenu"
                android:layout_
                android:layout_
                android:src="@drawable/ic_menu"
                android:layout_centerVertical="true"
                android:layout_margin="16dp"/>

        </RelativeLayout>

    </com.google.android.material.appbar.AppBarLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_
        android:layout_
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/appBar"
        app:layout_constraintBottom_toTopOf="@id/bottomNavigation"
        android:id="@+id/linearLayoutContents">

        <TextView
            android:layout_
            android:layout_
            android:text="Lorem ipsum"
            android:textSize="32sp"
            android:textStyle="bold"
            android:textColor="@android:color/black"
            android:layout_margin="24dp"/>

        <TextView
            android:layout_
            android:layout_
            android:layout_marginStart="32dp"
            android:layout_marginEnd="32dp"
            android:text="@string/content"
            android:textColor="@android:color/darker_gray"
            android:textSize="16sp"/>

    </LinearLayout>

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:layout_
        android:layout_
        app:menu="@menu/bottom_nav_menu"
        android:id="@+id/bottomNavigation"
        android:background="@android:color/white"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

    <View
        android:layout_
        android:layout_
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:id="@+id/overlay"
        android:background="#CCFFFFFF"
        android:elevation="8dp"/>

</androidx.constraintlayout.widget.ConstraintLayout>

【问题讨论】:

【参考方案1】:

对同级视图使用海拔属性会导致视图根据您给它们的 z 顺序相互隐藏。为了克服这个问题,我会将我的布局层次结构更改为非平面状态,考虑到ConstraintLayout 目的(平面视图层次结构),这是一种肮脏的方法。如果您发现了更好的方法,请随时分享。

因此,要将叠加层移出其父级并移除高程:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity"
    android:background="@android:color/white">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_
        android:layout_>

        ...

    </androidx.constraintlayout.widget.ConstraintLayout>

    <View
        android:layout_
        android:layout_
        android:id="@+id/overlay"
        android:background="#CCFFFFFF"/>

</FrameLayout>

【讨论】:

以上是关于半透明叠加在不同的视图上显示不同的效果的主要内容,如果未能解决你的问题,请参考以下文章

渲染半透明/透明叠加

Qml 半透明模糊叠加矩形

如何让图片以半透明的效果显示在所有程序或窗口的最上层?

如何在相机ARKit上添加半透明背景

Android:半透明覆盖?

iOS 7 半透明模态视图控制器