工具栏阴影不显示

Toolbar shadow not showing

我的应用有一个带有 tablayout 的片段,它显示了一个带有高度的阴影:

 <android.support.design.widget.TabLayout
 android:id="@+id/my_music_tab_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/tab_bg"
    android:elevation="4dp"
    app:tabSelectedTextColor="?attr/color_tab_text_selected"
    app:tabTextColor="?attr/color_tab_text"
    app:tabIndicatorColor="?attr/color_tab_text_selected"
    app:tabIndicatorHeight="4dp" />

但是当我切换到另一个没有 TabLayout 的片段时,阴影没有出现:

 <android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:theme="@style/AppTheme.AppBarOverlay"
    app:expanded="true" >

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:titleEnabled="false" >

        <include
            layout="@layout/imageview_appbar"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            app:layout_collapseMode="parallax" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@android:color/transparent"
            android:elevation="4dp"
            android:minHeight="?attr/actionBarSize"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            app:layout_collapseMode="pin" />

    </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

我做错了什么?

如果 Appbarlayout 包含可滚动的折叠工具栏,它不会显示阴影,它是硬编码的,可能是出于性能考虑。

尝试解决方法,例如在应用栏底部添加一个普通视图并将其背景设置为可绘制阴影(手动编码的灰色渐变)

我通过将以下代码添加到我的 MainActivity class 来让它工作 class:

    AppBarLayout layout = (AppBarLayout) findViewById(R.id.appbar);
    layout.setStateListAnimator(null);
    ViewCompat.setElevation(layout, 8);