Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ActionBarSherlock with fullscreen

Is there some way to hide status bar and keep action bar visible?

like image 428
Michal W Avatar asked Aug 23 '26 10:08

Michal W


1 Answers

Yes, there is. You should set FLAG_FULLSCREEN in your onCreate method of Activity.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main);
}
like image 90
Sabre Avatar answered Aug 26 '26 00:08

Sabre