I want to show an animated GIF image in an android application like the image below. I have tried the webview but no success. How to show the animated gif in the application
You may have a try on this lib GifImageView. It's very simple and easy to use. The following sample code is from README of this project.
@Override protected void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState);
gifView = new GifImageView(context); gifView.setBytes(bitmapData); setContentView(gifView);
}
@Override protected void onStart() { super.onStart(); gifView.startAnimation(); }
@Override protected void onStop() { super.onStop(); gifView.stopAnimation(); }