对于具有基本 Activity 的工具栏,高度阴影不可见

Elevation shadow not visible for Toolbar with Basic Activity

我使用 Android Studio 创建了一个 "Basic Activity",并尝试使用 的答案在 API 28 像素设备上创建高程阴影。但是,没有显示高程阴影。 activity_main.xml 文件当前是:

<androidx.coordinatorlayout.widget.CoordinatorLayout
        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_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

    <com.google.android.material.appbar.AppBarLayout
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            app:elevation="0dp"
            android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:elevation="16dp"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay"/>

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

    <include layout="@layout/content_main"/>

    <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="@dimen/fab_margin"
            app:srcCompat="@android:drawable/ic_dialog_email"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

为什么高程阴影在 Toolbar 上不再起作用?

可以设置elevationAppBarLayout来实现阴影。
示例(例如,我为 Toolbar 设置了 marginEnd 和颜色白色,只是为了方便看到阴影)

<com.google.android.material.appbar.AppBarLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:elevation="16dp"
    android:layout_marginEnd="50dp"
    android:theme="@style/AppTheme.AppBarOverlay">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="#fff"
        app:popupTheme="@style/AppTheme.PopupOverlay"/>

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

我在 Pixel 模拟器 (android 9)、华为设备 (android 8) 上进行了测试,并且可以正常工作(阴影显示)。

我觉得如果parent ViewGroup width height 等于children,就不会显示children的影子了。我用不同的 ViewGroup 尝试你的情况,比如 ContrainstLayoutRelativeLayout 并得到相同的行为。

根据您提供的 XML,将 android:clipChildren="false" 添加到 CoordinatorLayout。这将允许在 AppBarLayout.

的边界之外绘制阴影

XML 现在看起来像这样(此处简化):

<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:clipChildren="false">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <androidx.appcompat.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:elevation="16dp"
            app:title="The Toolbar"
            app:titleTextColor="@android:color/white" />

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

这真的足够显示阴影了。我在这里遇到的问题是阴影 所以 在 API 28 和 29 上微弱,我无法将它与工具栏区分开来。

为了使阴影更明显,为 v28 创建一个样式文件并将以下内容添加到应用程序的主题中:

<item name="android:spotShadowAlpha">0.5</item>

似乎默认的 alpha 值太暗了,不容易看到。此值可解决问题。

"Playing with elevation in Android (part 1)" 很好地解释了这个问题。

布局现在在 API 29 模拟器上看起来像这样:

<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:elevation="4dp">

<androidx.appcompat.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:buttonGravity="center_vertical"
    app:titleView="@layout/toolbar_sub_category_title"
    tools:ignore="Overdraw" />