设为首页 加入收藏

TOP

碰到了通过Movie显示gif图片,有部分图片的duration为0导致gif只显示第一帧
2019-09-01 23:15:05 】 浏览:31
Tags:碰到 通过 Movie 显示 gif 图片 部分 duration 导致 第一

解决办法,改为使用android-gif-drawable.jar来显示gif图片(需要配合com.android.support:support-v4:18.0.0使用)

 

GifImageView imageView = new GifImageView(this);
GifDrawable gifFromPath = null;
                try {
                    gifFromPath = new GifDrawable(imagePath);  // gif图片在本机的路径比如 /mnt/sdcard/ggggg.gif
                } catch (IOException e) {
                    e.printStackTrace();
                }
imageView.setImageDrawable(gifFromPath);

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Kotlin入门(22)适配器的简单优化 下一篇Android系统修改之Notification布..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目