Remove Title Bar on Android Application

xiao

This one’s real simple. If you want to get rid of the title bar in an Android application, you can do it programmatically with:

requestWindowFeature(Window.FEATURE_NO_TITLE);

or in the manifest for your entire application inside the ‘activity’ element with

android:theme="@android:style/Theme.NoTitleBar"
Source

Related posts:

  1. Google Android T-Mobile G1 1.6 Phone Review
  2. Google Android 1.6 Camera Exposure

Leave a Reply