Status Bar Color not changing with Relative Layout as root element

后端 未结 3 1868
耶瑟儿~
耶瑟儿~ 2020-12-17 15:48

I am just starting to learn android, I am learning to add AppBar. But if I use Relative Layout as the root then Status Bar don\'t use the color \"colorPrimaryDark\" defined

3条回答
  •  死守一世寂寞
    2020-12-17 16:01

    In v21/styles.xml you probably have this line of code:

      @android:color/transparent
    

    And as you are running on API 23, the declared styles are overrided from the ones in v21/styles.xml.

    As a solution:

    Just remove that line and it will work fine

提交回复
热议问题