How to hide status bar in Android How to hide status bar in Android android android

How to hide status bar in Android


Write this in your Activity

@Overrideprotected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    requestWindowFeature(Window.FEATURE_NO_TITLE);    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);}

Check Doc here : https://developer.android.com/training/system-ui/status.html

and your app will go fullscreen. no status bar, no title bar. :)


Use theme "Theme.NoTitleBar.Fullscreen" and try setting "android:windowSoftInputMode=adjustResize" for the activity in AndroidManifest.xml. You can find details here.


 if (Build.VERSION.SDK_INT < 16) {   getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); } else {     View decorView = getWindow().getDecorView();      int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;      decorView.setSystemUiVisibility(uiOptions);      ActionBar actionBar = getActionBar();      actionBar.hide(); }