If you want to get rid of the title bar in an Android application, you can do it programmatically with:
or in the manifest for your entire application inside the ‘activity’ element with
requestWindowFeature(Window.FEATURE_NO_TITLE);
android:theme="@android:style/Theme.NoTitleBar"
0 comments: