Digital learnings and other such nonsense…
Posts tagged android-ui
How to remove the default grey title bar on android apps
0514 days
by James Elsey
in Android
Fed up of the default title bar on your android applications?
We can get rid of that easy, either use the following in your activities to do it :
requestWindowFeature(Window.FEATURE_NO_TITLE);
Or, the way I prefer, disable it application wide by slipping the following into the AndroidManifest.xml file :
android:theme="@android:style/Theme.NoTitleBar"


