hey guys how feasible is it to create a lottie spl...
# android
a
hey guys how feasible is it to create a lottie splash screen. Setting up the theme is easy ..reference the drawable but getting the animation to start as a lottieview is what i’m thinking about
m
you can start in xml or using java/kotlin. just need to provide .json file
a
for a splash?
usually I would do something like this
Copy code
<!-- Splash Screen Theme -->
  <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowBackground">@drawable/splash_background</item>
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
  </style>
and the drawable could be the lottie imageview but then
i’d need 2 start the animation
hence my question
r
not sure your lottie would load immediately
👍 1
a
yeah my thoughts exactly
and wondering if there’s a way around that other than creating an explicity splash actiivty