Android中去掉标题栏的几种方法(三种)
程序员文章站
2024-03-07 21:11:21
1.在java代码中
(splashactivity继承appcompatactivity时无效)
2.在manifest.xml中改theme
3.先在...
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中去掉标题栏的几种方法(三种),希望对大家有所帮助