Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change status bar icons tint

In Lollipop we can change the color of status bar background or even make it transparent. Let's suppose I want a light background (#eee). Status bar icons' default color is white, so they would become illegible. Is it possible to make them dark?

like image 989
Michał Klimczak Avatar asked Oct 31 '22 14:10

Michał Klimczak


1 Answers

It's now possible in Android 6+ using this attr in style.xml:

<item name="android:windowLightStatusBar">true</item>
like image 150
Michał Klimczak Avatar answered Nov 13 '22 03:11

Michał Klimczak