标签:android style io ar java sp 文件 on cti
在android中去掉标题栏有三种方法,它们也有各自的特点。
1.在代码里实现
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文件里定义
<?xmlversion="1.0"encoding="UTF-8"?> <resources> <style name="notitle"> <item name="android:windowNoTitle">true</item> </style> </resources>
<applicationandroid:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/notitle">
其实可以看得出来,第二种方法和第三种方法实质是一样的,只不过第二种方法调用的是系统定义好的style.xml文件,而第三种方法则是在自己的应用里定义style.xml,然后再自己再调用,其实道理是一样的,第三种方法做起来更有成就感。
标签:android style io ar java sp 文件 on cti
原文地址:http://blog.csdn.net/huluhong/article/details/40991799