1 manifest.xml文件
<activity
android:name=".InitActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" > //页面无标题
全屏无标题: android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”
2 在Activity中的onCreate方法里添加如下代码,注意要在setContentView前面添加
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
FR:海涛高软(QQ技术交流群:386476712)