-1

I want to introduce a anime character for a bot which can talk and show different action acording to situations. I was planning to implement it using different gif urls.Will there be any issue on implementing this way. Is there any better Solution.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Gokul Sajan
  • 373
  • 4
  • 14

1 Answers1

1

You can play GIF from image urls in Android's ImageView using Glide. The GIF will run smoothly. Another way of playing GIF is to use WebViews in Android

NIKHIL AGGARWAL
  • 448
  • 4
  • 9
  • Will there be any issue during transition from one gif to another gif like white screen on load – Gokul Sajan Jan 25 '20 at 05:58
  • Well, most probably you will not face any issue if the file size is low. In case, you face issue like white screen, you can prefetch images in cache them in memory to load them faster and smooth transition. – NIKHIL AGGARWAL Jan 25 '20 at 06:05