Android appbarlayout elevation appears in status bar

后端 未结 1 2106
执笔经年
执笔经年 2021-02-18 18:49

How do I get rid of the elevation in the status bar? If I set in AppbarLayout the app:elevation to 0dp the elevation doesn\'t appear anymore in status bar but also not below the

1条回答
  •  时光说笑
    2021-02-18 19:22

    Our concern is about shadow of AppBarLayout visible when status bar is transparent. Having an opaque status bar is not viable at all times. This happens on Lollipop & above only because of dynamic shadow rendering. On Marshmallow the wrong shadow looks even worse.

    Best solution

    Your root layout should have android:fitsSystemWindows="true" at all times, otherwise your UI will not draw behind status bar.

    Now wrap the AppBarLayout inside another CoordinatorLayout which has android:fitsSystemWindows="false". This will prevent the shadow from overflowing into statusbar


    Other workarounds (not recommended)

    In your Style remove the statusBarColor:

    @android:color/transparent 
    

    So your theme would be:

    
    

    Also you can simply make app:elevation="0dp" on appbarlayout, but that removes the shadow on bottom also.

    0 讨论(0)
提交回复
热议问题