我的目标是使用一些额外的文本视图创建自己的应用栏。当我向我的应用程序添加新活动时,AppBar阴影立即可见。问题是我在清单中使用AppTheme.NoActionBar隐藏默认appbar并使用AppBarLayout创建我自己的应用程序栏。之后,活动会加载没有阴影的应用栏(阴影在接下来的1秒内可见)。任何人都可以告诉我,如何立即加载阴影?
清单
<activity android:name=".activity.Example"
android:theme="@style/AppTheme.NoActionBar"/>
styles.xml
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
V21 \ styles.xml
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
activity_example.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
</RelativeLayout>