码迷,mamicode.com
首页 > 移动开发 > 详细

Android中去掉标题栏

时间:2016-06-23 12:22:26      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

Android中去掉标题栏有三种方法,它们也有各自的特点。

1.在代码里实现

  1. this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏  

记住:这句代码要写在setContentView()前面。

 

2.在清单文件(manifest.xml)里面实现

<application android:icon="@drawable/icon"   
        android:label="@string/app_name"   
        android:theme="@android:style/Theme.NoTitleBar"> 

这样用可以将整个应用设置成无标题栏,如果只需要在一个Activity设置成一个无标题栏的形式,只要把上面的第三行代码写到某一个Activity里面就可以了。

 

3.在style.xml文件里定义

1 <?xml version="1.0" encoding="UTF-8" ?>  
2 <resources>  
3     <style name="notitle">  
4         <item name="android:windowNoTitle">true</item>  
5     </style>   
6 </resources>  

然后面manifest.xml中引用就可以了,这种方法稍麻烦了些。

<application android:icon="@drawable/icon"   
        android:label="@string/app_name"   
        android:theme="@style/notitle">  

转载自:http://blog.csdn.net/liuzhidong123/article/details/7818531

Android中去掉标题栏

标签:

原文地址:http://www.cnblogs.com/kingsam/p/5609968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!