So I know that Android does not support gif animations and I already know about the method of using javascript to swap images. I also know that TextView can display static images. The problem I'm facing is that I'm trying to implement a messenger application and I want to display smileys (which I have in a gif format) inline with the message text (pretty much like many messengers do (ex: Yahoo Messenger or even the stock messaging application) ).
I have already replaced the smiley codes in the message string for their equivalent image (currently replacing them with HTML <img.../> tags), but how can I inline them with the text and more importantly play their animation?
What should I do and what is the best approach?
Thanks in advance!
P.S: There is a messenger application called Slick which does exactly what I'm looking for but I have no idea whatsoever how they are doing it.