android 去掉标题栏、无标题栏
一.在xml文件中
AndroidManifest.xml 中 android:theme="@android:style/Theme.NoTitleBar"
二.在代码中
onCreate()中
requestWindowFeature(Window.FEATURE_NO_TITLE);
注意这句一定要写在setContentView()方法的前面
一.在xml文件中
AndroidManifest.xml 中 android:theme="@android:style/Theme.NoTitleBar"
二.在代码中
onCreate()中
requestWindowFeature(Window.FEATURE_NO_TITLE);
注意这句一定要写在setContentView()方法的前面