Open GoogleCodeExporter opened 8 years ago
我这边用你的图来测试,没有出现OOM,不知道你那边是什么��
�的环境。
至于解码的c处理部分,我已经完成了用c对gif来解码,因为这
段时间比较忙,等我自己测试过后会放出来
Original comment by liao.cy....@gmail.com
on 9 Aug 2013 at 2:39
避免OOM,你可以在以下方法中加入这几行就可以了(在GifView.
java中)
private int getCurrentFrame() {
// 如果当前帧不为空的话,销毁当前帧里的bitmap对象
if (null != currentImage) {
currentImage.recycle();
currentImage = null;
}
// 后面的不变
}
附件中是加这几行与不加这几行之间的区别
Original comment by xiang....@gmail.com
on 9 Jan 2014 at 2:09
Attachments:
附加上我测试用的gif文件,1.7M的gif图片,不算小
Original comment by xiang....@gmail.com
on 9 Jan 2014 at 2:11
Attachments:
@ xiang....@gmail.com
下面的方法 什么时候调用呢?
private void getCurrentFrame() {
// 如果当前帧不为空的话,销毁当前帧里的bitmap对象
if (null != currentImage) {
currentImage.recycle();
currentImage = null;
}
// 后面的不变
}
Original comment by li710...@gmail.com
on 24 Dec 2014 at 6:18
Original issue reported on code.google.com by
Alibaba...@gmail.com
on 28 Jun 2013 at 7:21Attachments: