JAVA Eclipse创建的Android程序如何不显示标题栏
在manifest.xml文件的application节点添加下面一行即可
android:theme="@android:style/Theme.NoTitleBar"
如果要恢复默认,则改成
android:theme="@style/AppTheme"
 
		
    本文为博主原创文章,未经博主允许不得转载。
在manifest.xml文件的application节点添加下面一行即可
android:theme="@android:style/Theme.NoTitleBar"
如果要恢复默认,则改成
android:theme="@style/AppTheme"
 
		
