当前位置: 移动技术网 > IT编程>移动开发>Android > Android中去掉标题栏的几种方法(三种)

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

2019年07月24日  | 移动技术网IT编程  | 我要评论

我的恶魔少主,微山房产网,旺旺网育儿论坛

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中去掉标题栏的几种方法(三种),希望对大家有所帮助

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网