在清单文件为启动Activity设置Style
android:theme="@style/AppTheme.Welcome"
然后在Style.xml中设置:
<style name="AppTheme.Welcome" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="android:windowBackground">@mipmap/welcome</item> <item name="android:windowNoTitle">true</item> </style>就OjbK了