How can I get this style in my android app? White navigationbar and grey icons. An example is when opening the application drawer.
I have tried many options but with
For API >= 23
Try :
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
OR in style :
- true
- @color/colorWhite
- #colorPrimaryDak
- @color/colorAccent
For API < 23
Declare this under v21/style.
- @color/colorPrimary
// white
- true
UPDATE :
- @color/colorPrimary
// white
- true