Remove/Hide the title bar from the app

Here is my first android topic, this topic about how to remove the title bar from the app.

if you wanna to remove/hide the title bar from your app, you just have to insert the following code in onCreate method.

requestWindowFeature(Window.FEATURE_NO_TITLE);

this line of code must be written before the setContentView method.

OR

you can get this work by adding the following code to the manifest file

android:theme=”@android:style/Theme.NoTitleBar”

Hope this will be useful for you.

stay tuned for the next topic.

Mumen Shabaro.

One thought on “Remove/Hide the title bar from the app

Leave a comment