How to add custom android animation, like a gif

Viewed 55

Android newbie here. I’ve been tasked in a uni course to add a screen that has an animation like this: Link. I was just wondering how should I go along and make something like this.

1 Answers

If you already have .gif file then you can use Glide to set it on an ImageView like this

Glide.with(context).asGif() .load(R.drawable.your_gif).into(imageView);

Or if you want to create gif of your own then follow this https://ezgif.com/maker

Related