I have an animated GIF I created and I want to put it on the splash screen.
There are way to show bitmap
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque">
<item android:drawable="@android:color/white"/>
<item>
<bitmap
android:src="@drawable/fiadr"
android:gravity="center"/>
</item>
</layer-list>
But I found no way to use animated GIFs.
How do I achieve this?