Android启动页

て烟熏妆下的殇ゞ 提交于 2019-12-18 13:06:54

第一步:自定义style

<style name="AppTheme.SplashTheme" parent="AppTheme">
   <item name="android:windowBackground">@mipmap/bg_splash</item>
   <item name="android:windowFullscreen">true</item>
</style>

第二步:将启动页的theme设置为自定义的style

  <activity
       android:name=".mvp.ui.activity.SplashActivity"
       android:theme="@style/AppTheme.SplashTheme">
       <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.LAUNCHER" />
       </intent-filter>
   </activity>

笔记:
1.设置style完毕后,将layout的background设置一个非透明的颜色,可以看到android:windowBackground闪屏的效果

参考链接:
Android APP启动白屏优化
Android APP应用启动页白屏(StartingWindow)优化
Android开发之启动页与广告页

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!