android 显示gif格式的图片

来源:互联网 发布:网络成瘾的课件 编辑:程序博客网 时间:2024/05/10 20:36

参考:http://www.cnblogs.com/android100/p/android-gif.html

webview加载gif图片

xml:

<WebView        android:id="@+id/wv"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerHorizontal="true"        android:layout_centerVertical="true" />

activity:

WebView runWebView = null;runWebView = (WebView) findViewById(R.id.wv);runWebView.loadDataWithBaseURL(null,"<HTML><body bgcolor='#ffffff'><div align=center><IMG src='file:///android_asset/load.gif'/></div></body></html>","text/html", "UTF-8", null);


在assets目录下放置一个gif格式的图片

运行就ok了


0 0
原创粉丝点击