How do I remove the top title bar that\'s default in an Android app?
The g
Its very simple to remove the title bar Just, Add the android:theme property to your AndroidManifest.xml
<application android:theme="@android:style/Theme.NoTitleBar">
Go into manifest file
Click the "Application" tab on the bottom (as shown)
Enter @android:style/Theme.NoTitleBar
(as shown)
Try this:
requestWindowFeature(Window.FEATURE_NO_TITLE);