Android中去掉标题栏的几种方法(三种)

内容摘要
1.在java代码中
(SplashActivity继承AppCompatActivity时无效)



2.在manifest.xml中改Theme

3.先在style.xml中自定义style


<&#63;xml version="1.0" encoding="UTF-8"
文章正文

1.在java代码中

(SplashActivity继承AppCompatActivity时无效)

2.在manifest.xml中改Theme

3.先在style.xml中自定义style

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

以上所述是小编给大家介绍的Android中去掉标题栏的几种方法(三种),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对phpstudy网站的支持!


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!