1

I have this app, I have Header with background color grey, how can I set the Status Bar to the same color? I need to change the (blue-purple) color to the same as the header background Grey.

skokan
  • 23
  • 8

1 Answers1

1

Write this line in your code: public abstract void setStatusBarColor (int color)
To "remove" the status bar write this: this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

L-S
  • 189
  • 1
  • 9