Search code examples
androidandroid-actionbar

Android how to hide status bar without ActionBar


is it possible to hide status bar:

enter image description here

And show action bar without it?


Solution

  • try this..

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
        WindowManager.LayoutParams.FLAG_FULLSCREEN);