我在应用程序内部使用了Lottie Animation。没问题。
但是甚至有可能在启动画面中使用它吗?现在我的启动画面具有一个Launcher主题,该主题仅保留冷启动持续时间。
<style name="AppTheme.Launcher">
<item name="android:windowBackground">@drawable/launcher_with_logo</item> <!--Also available: @drawable:launcher_screen_with_background-->
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
我想做这样的事情Splash Screen of Crane provided by Google's Material Design Guideline。
那么有什么方法可以满足标准准则来创建启动屏幕(仅在冷启动时显示而不是设置计时器,这很丑)?
同样的问题也问了here.