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">
栏 目:Android代码
本文地址:http://www.codeinn.net/misctech/127665.html






