1. Use the following tag in your app theme to make the status bar transparent: @android:color/transparent
  2. And then use this code in your activity’s onCreate method. View decorView = getWindow(). getDecorView(); decorView. setSystemUiVisibility(View.

How do I make my status bar white on Android?

It’s not possible to change the color of the status bar in android. The only thing you can set in your app is the status bar’s background color.

How do I show status bar on Android?

1. Customize the Status Bar from Phone Settings

  1. Open your Phone Settings.
  2. Go to Display.
  3. Scroll Down and click on Status Bar.
  4. Here you can make the battery percentage visible or hide it, you can also enable the network speed to appear in the status bar.

Why did my status bar turn black?

A recent update to the Google application caused an aesthetic issue with the font and symbols turning black on the notification bar. By uninstalling, reinstalling, and updating the Google application, this should allow the white text/symbols to return to the notification bar on the home screen.

How do I change my status bar icon?

Customize Status Bar on Android Phone or Tablet

  1. Open Notification Center on your Android Phone or Tablet by sliding down from the top of the screen.
  2. On the Notification Center, press and hold on the Gear-shaped Settings icon for about 5 seconds.

How can I restore my Android status bar?

The status bar being hidden may be in Settings>Display, or in the launcher settings. Settings>Launcher. You can try downloading a launcher, like Nova. That may force the status bar back.

How do I hide the status bar on my Android lock screen?

To turn off notifications on lock screen, you can go to Settings->Apps & notifications->Notifications->Notifications on lockscreen, and set it to ‘Don’t show notifications’.

Is it possible to make status bar fully transparent on Android?

On android version 19 and 20 (Android kitkat) fully transparent status bar will not work but we will make status bar Translucent instead. Below is screenshot from 3 devices having android version Jelly Bean, Kitkat and Android N to show you difference.

How to change the color of the status bar on Android?

The status bar color can be set directly above Android 5.0, but the main work is compatible with version 4.4. /** * Set the color of the status bar view and add it to the interface. If you find the status bar view, set it directly.

Why is my status bar not working on Android?

Also android native code/config discussed in another stackoverflow topic solution will override by hence doesn’t work well. If you’re talking about the status bar of the OS (the one you pull down to access wifi/bluetooth/settings etc), try adding this to you MainActivity.java:

What does @system_UI_flag_light_status_bar do?

SYSTEM_UI_FLAG_LIGHT_STATUS_BAR makes sure that the status bar icons are drawn in such a way so that they are fully visible in light mode. Cool..so, now our status bar looks pretty good on most of the API levels.