I’m making a small android application, and I want to remove the android title bar.
I’ve tried using the
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
But it still makes the title bar show for 0,1 second when the application starts. I would love to make it not even show it when the app is loading.
I’ve searched a bit around, and somebody mentions that you can change the style of the app, but I have no idea how to do that. I’ve only just started making apps, so I don’t have a lot of experience.
try this:
in your application tag in manifest add
android:theme,like follow:<application android:theme="@android:style/Theme.NoTitleBar" ...>