i have this code to show gif image with Movie.
public class GIFView extends View{ private Movie movie; private InputStream is; private long movie
The easiest way would be to use a WebView.
WebView
Store your animated GIF in the assets folder. Then load the GIF by using the following code:
WebView wv = (WebView) findViewById(R.id.webView1); wv.loadUrl("file:///android_asset/anim5.gif");
webView1 is your WebView id, and anim5.gif is your GIF name.
webView1