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


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网站的支持!


« 
» 
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3