当前位置:主页 > 移动开发 > Android代码 >

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

时间:2021-05-24 08:48:48 | 栏目: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">

您可能感兴趣的文章:

相关文章