如何在不丢失ICS外观的情况下摆脱标题栏?

And*_*ndy 1 android android-titlebar android-4.0-ice-cream-sandwich

我试过这个用google搜索时随时可用:

android:theme="@android:style/Theme.NoTitleBar"
Run Code Online (Sandbox Code Playgroud)

但是当我应用它时,它会将整体主题改回冰淇淋前三明治.我的意思是TextView,DatePicker姜饼主题是姜饼,而不是ICS主题.有任何想法吗?

Bas*_*ngh 5

在setContentView()之前键入this是onCreate()方法:

requestWindowFeature(Window.FEATURE_NO_TITLE);
Run Code Online (Sandbox Code Playgroud)