1.在java代碼中 (SplashActivity繼承AppCompatActivity時無效) 2.在manifest.xml中改Theme 3.先在style.xml中自定義style 再在manifest.xml中引用 ...
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">