How to remove the shadow above the app bar?

前端 未结 4 1022
生来不讨喜
生来不讨喜 2021-02-09 10:27

I\'d like to make the status bar transparent by adding @android:color/transparent to v21/styles.xml on

4条回答
  •  时光说笑
    2021-02-09 11:15

    I believe this question is pointing to same problem Android appbarlayout elevation appears in status bar

    Possible solutions:

    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.

提交回复
热议问题