源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

android 显示gif图片实例详解

  • 时间:2020-01-18 16:25 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:android 显示gif图片实例详解
在android中不支持gif格式的图片,但是由于我希望在我的程序中刚刚加载的时候有一个小人在跑步表示正在加载。而这个小人跑就是一个gif图片。也就是希望程序一启动时就加载gif图片。在网上查找了一些方法不知道是我使用的android的版本高(android4.4)还是什么问题就是加载不出来。最后想了一个办法加载了出来。这个办法就是将gif放在webView中让其显示。 [img]http://files.jb51.net/file_images/article/201609/201699110029156.png?20168911053[/img] 下面是关于这个的代码: activity_prepare_fullscreen.xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#F3F3F3"
   >

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

  <TextView
    android:id="@+id/fullscreen_content"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/runWebView"
    android:layout_centerHorizontal="true"
    android:gravity="center"
    android:keepScreenOn="true"
    android:text="正在加载请等待..."
    android:textColor="#33b5e5"
    android:textSize="30sp"
    android:textStyle="bold" />

</RelativeLayout>

PrepareFullscreenActivity.java 文件 多余的就不贴了,这是主要的两句 private WebView runWebView=null; runWebView = (WebView) findViewById(R.id.runWebView); 下一句就是放入文件,文件在assents下放着呢 runWebView.loadDataWithBaseURL(null,"<HTML><body bgcolor='#f3f3f3'><div align=center><IMG src='file:///android_asset/run.gif'/></div></body></html>", "text/html", "UTF-8",null); 希望通过本文,能帮助大家解决这种问题,谢谢大家对本站的支持!
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部