【发布时间】:2019-08-15 02:18:50
【问题描述】:
所以我添加了导航抽屉,因此我必须在我的布局 xml 文件中使用工具栏(而不是使用带有操作栏的主题 Theme.AppCompat.Light.DarkActionBar,现在是 Theme.AppCompat.Light.NoActionBar)
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"/>
</com.google.android.material.appbar.AppBarLayout>
我找到了在工具栏下方添加阴影的答案 (AppBarLayout) https://stackoverflow.com/a/31026359/9766649
但它仅适用于 Android 21+
Theme.AppCompat.Light.DarkActionBar shadow 适用于旧版 Android
所以唯一的解决方案是使用像https://stackoverflow.com/a/26904102/9766649 这样的自定义阴影?
【问题讨论】:
标签: android android-toolbar android-elevation