How can I make the status bar white with black icons?

前端 未结 7 802
野性不改
野性不改 2020-12-02 18:03

I want to change the colour of the status bar for my app so that it\'s white with black icons (instead of the default black with white icons). Is there any way of doing this

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 18:35

    It is possible to make the white status bar with grey icons e.g. this way for SDK >= 23 (see docs):

    
    

    in your styles.xml and set the colorPrimary to white or programmatically:

    getWindow().setStatusBarColor(Color.WHITE);
    

提交回复
热议问题