android去掉标题栏

在AndroidManifest.xml修改

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

改为:

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >

posted @ 2013-10-15 11:04  传说之美(libill)  阅读(196)  评论(0编辑  收藏  举报