I want to hide the titlebar for some of my activities. The problem is that I applied a style to all my activities, therefore I can\'t simply set the theme to @android:
@android:
For AppCompat, following solution worked for me:
AppCompat
Add new theme style with no action bar in your styles.xml and set parent="Theme.AppCompat.NoActionBar".
styles.xml
parent="Theme.AppCompat.NoActionBar"
Now implement the same theme style to your splash screen activity in androidManifest.xml
androidManifest.xml
// apply splash them here
Here is result: