Skip to content

Instantly share code, notes, and snippets.

@rikwatson
Created August 21, 2012 06:44
Show Gist options
  • Save rikwatson/3412741 to your computer and use it in GitHub Desktop.
Save rikwatson/3412741 to your computer and use it in GitHub Desktop.
Make an Activity Fullscreen
public class FullScreenActivity extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment