4

I have changes my application's status bar color to white, after this status bar icon are not visible.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
being_sohelkhan
  • 141
  • 2
  • 11

2 Answers2

3

You can try this code. Hope it works for you

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
        getWindow().setStatusBarColor(Color.WHITE);
    }
Maitri
  • 513
  • 1
  • 3
  • 14
3

Add your activity style to this

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

if you need to this programmatically @Maitri's solution is the true one

Eren Tüfekçi
  • 2,463
  • 3
  • 16
  • 35