When I try to read a gif images using a WebView in Android 2.3.3 API 10, it\'s not animated (it appears static). How can I solve this issue? Is there any setting I must chan
To use GIF in your android code,
Step 1: Assets folder setting : In this folder you have to place your GIF and html code. Html code is following
In this code lets assume you have splash.gif in ur assets folder
Step 2: Just load the webview with this url
wvSplashScreen.loadUrl("file:///android_asset/splash.html");
By these 2 simple step you can load GIF in your webview