Search code examples
androidhidesplash-screentitlebar

Title Bar On Splash Screen


I would like to ask is there any means to hide the title bar from showing it on the splash screen page? I tried changing the theme through the design page ,

tried

android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen

and

requestWindowFeature(Window.FEATURE_NO_TITLE);

and

getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

but the title bar is still there , is there any way to hide it ?

Regards.


Solution

  • Really easy! Just add this code before your "setContentView" in your Activity class. requestWindowFeature(Window.FEATURE_NO_TITLE);

    enter image description here

    Regards, Gabriel