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

android应用中去掉标题栏的方法

时间:2015-07-28 12:53:05      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

在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">  

 

如果错误描述为

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

 

原因:
从错误提示中提到Theme.AppCompat theme,这是因为我们的activity一定是继承了兼容包中的类,
比如我这里就无意中继承了ActionBarActivity,它来自android.support.v7.app.ActionBarActivity。
所以就要使用与其配合的AppCompat的theme才行。

android应用中去掉标题栏的方法

标签:

原文地址:http://www.cnblogs.com/haobadea/p/4682248.html

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