Hey,
I’m trying to create animated splash screen on Android (loading screen). With new project, it’s just
static image with Monogame logo.
<item name="android:windowBackground">@drawable/splash</item>
I can create drawable with animated-list instead:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/logo2"
android:duration="100" />
<item android:drawable="@drawable/Move"
android:duration="100" />
</animation-list>
but how to detect that I should stop animation ? I want to make it infinity, and when game’s view is visible I should stop it. Any callback when game is visible ?