Make an Activity in Full Screen in Android
by Sasikumar[ Edit ] 2013-10-31 20:43:35
To make an activity display in full screen use the following :
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
Place the above code in onCreate method after "super.onCreate(savedInstanceState);" but before "setContentView(R.layout.main);" so that your activity will be displayed in full screen.