1、在values下styles.xml文件里添加
<!--***************启动页Theme***************-->
<style name="Theme.Splash" parent="AppTheme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@mipmap/logo</item>
<item name="android:windowFullscreen">true</item>
</style>
2、在androidManifest.xml中要启动的activity中添加如下代码即可
android:theme="@style/Theme.Splash"