I want to hide status bar / notification bar in splash screen I am using style: this
To make your activity fullscreen, add this code in onCreate before setContentView:
onCreate
setContentView
requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);