Skip to content

Instantly share code, notes, and snippets.

@rickyngk
Created December 29, 2015 04:19
Show Gist options
  • Save rickyngk/e0c5fb467d641d8f196b to your computer and use it in GitHub Desktop.
Save rickyngk/e0c5fb467d641d8f196b to your computer and use it in GitHub Desktop.
Fullscreen Activity
public class LauncherActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
hideSystemUI();
setContentView(R.layout.activity_launcher);
}
private void hideSystemUI() {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment