本文给大家带来了三种android去掉标题栏的方法,都非常不错,对android 去掉标题栏的方法感兴趣的朋友一起通过本文学习吧
1.在java代码中
(SplashActivity继承AppCompatActivity时无效)
2.在manifest.xml中改Theme
3.先在style.xml中自定义style
1
2
3
4
5
6
|
<?xml version= "1.0"
encoding= "UTF-8"
?> <resources>
<style name= "notitle" >
<item name= "android:windowNoTitle" > true </item>
</style>
</resources>
|
再在manifest.xml中引用
1 <application android:icon="@drawable/icon" 2 android:label="@string/app_name" 3 android:theme="@style/notitle">