How do I remove the top title bar that's default in an Android app?
The gray Hello, Android bar?
To get started enter “about:flags” into the Address Bar and hit Enter. Scroll down until you see the listing for Compact Navigation. Enable it and let the browser restart to gain access to the feature. Once the browser has restarted right click on one of the tabs and select Hide the toolbar from the Context Menu.
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">
<style name="MyTheme" parent="@android:style/Theme.NoTitleBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@drawable/xyz</item>
</style>
Go into manifest file
Click the "Application" tab on the bottom (as shown)
Enter @android:style/Theme.NoTitleBar
(as shown)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With