Status bar turns white and does not show content behind it

前端 未结 26 2568
闹比i
闹比i 2020-11-29 22:33

I am trying out AppCompat on Marshmallow. And I want to have a transparent status bar however it turns white. I\'ve tried a couple solutions but they didn\'t work for me (Tr

26条回答
  •  情歌与酒
    2020-11-29 23:13

    [Output]

    Expand res -> values -> styles directory from project panel.

    Open styles.xml (v21)

    USE ANY ONE FROM BELOW WAYS

    1. Change true to false in android:windowDrawsSystemBarBackgrounds property.
    2. Change @android:color/transparent to @color/colorPrimaryDark in android:statusBarColor property.
    3. Remove the android:statusBarColor propert line.

提交回复
热议问题