android studio如何取消xml布局文件里面最上面的一条东西
你想去掉的应该是标题栏
在代码里实现:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
2.在清单文件(manifest.xml)里面实现
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
3.在style.xml文件里定义
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然后面manifest.xml中引用就可以了,这种方法稍麻烦了些。
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/notitle">
2016-10-13