Android中去掉标题栏的三种方法
Android中去掉标题栏的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中引用
1 <application android:icon="@drawable/icon" 2 android:label="@string/app_name" 3 android:theme="@style/notitle">
- 1楼开心就好5233
- 一会儿试试,支持下!