Search code examples
androidandroid-4.0-ice-cream-sandwichandroid-titlebar

How to get rid of the Title Bar without losing the ICS look?


I tried this which was readily available when googled:

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

But when I apply it, it changes the overall theme back to pre-ice cream sandwich. What I mean by that is the TextView's, DatePickers etc. are Gingerbread themed, not the ICS themed. Any ideas?


Solution

  • Type this is the onCreate() method before setContentView():

    requestWindowFeature(Window.FEATURE_NO_TITLE);