Search code examples
androidandroid-statusbar

Invert icon color of status bar


I have searched a lot about this but all I have found is how to change status bar color. I want to invert color of icons in status bar on white background like Soundcloud has done in its mobile application like:

enter image description here

How to do this?


Solution

  • You can do that with the following code. it's just working on v23 API.

    In your: values-v23/styles.xml:

    <item name="android:windowLightStatusBar">true</item>
    

    Check this link for more information: https://stackoverflow.com/a/30075921/4409113

    Or: https://stackoverflow.com/a/33316669/4409113