Android更改工具栏颜色和状态栏颜色,但保持状态栏阴影

时间:2017-01-28 20:14:16

标签: java android

我希望将影子保留在状态栏上 但我需要以编程方式更改工具栏和状态栏颜色。 我可以做到这一点,但如果我以编程方式设置状态栏颜色,它会失去阴影(我相信它是高程)

我的根上有android:fitsSystemWindows="true"(coordlayout) 我以此为主题:

<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>

我设置工具栏颜色:

mToolbar.setBackgroundColor((Color.parseColor("#FF4040")));

如何在不丢失阴影的情况下设置两者?

default status bar color with shadow

setting the second color on toolbar

1 个答案:

答案 0 :(得分:0)

试试这个

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