Glide.with(getApplication()).load(url).placeholder(R.drawable.icon_load).diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(gifiv);
<WebView
android:id="@+id/gif_iv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"/>
WebView gifiv = (WebView) rootView.findViewById(R.id.gif_iv);
String html = "<html><body ><img src=\"" + url + "\" width=\"100%\" height=\"auto\"\"/></body></html>";
gifiv.loadData(html, "text/html", null);