I want to display animated GIF images in my aplication. As I found out the hard way Android doesn\'t support animated GIF natively.
However it can display animations
I have had success with the solution proposed within this article, a class called GifMovieView
, which renders a View
which can then be displayed or added to a specific ViewGroup
. Check out the other methods presented in parts 2 and 3 of the specified article.
The only drawback to this method is that the antialiasing on the movie is not that good (must be a side-effect of using the "shady" Android Movie
Class). You are then better off setting the background to a solid color within your animated GIF.