To hide the title bar and status bar:
try {((View)act.findViewById(android.R.id.title).getParent()).setVisibility(View.GONE); } catch (Exception e) {} act.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); act.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN); view.requestLayout();
To display the title bar and status bar:
try {((View)act.findViewById(android.R.id.title).getParent()).setVisibility(View.VISIBLE); } catch (Exception e) {} act.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN); act.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); view.requestLayout();
source share