iielse / imageviewer

A simple and customizable Android full-screen image viewer 一个简单且可自定义的Android全屏图像浏览器
MIT License
2.23k stars 310 forks source link

列表超过屏幕 有的图片加载不出来 #84

Closed chengmenghuiAndroid closed 4 years ago

chengmenghuiAndroid commented 5 years ago

我建议 在MessagePicturesLayout类加载图片哪里增加方法 mRecyclerView.addOnScrollListener(getListener(thumbList, i, iPicture)); 避免滑动过程中加载图片失败 ,直接滑动停止后加载图片; 这里为了避免重复设置增加开销,设置了一个sIsScrolling 标志变量来做判断。 /**

iielse commented 4 years ago

对于MessagePicturesLayout 当时的设计定位只是为了在Demo中演示常见的'9宫格'效果,实现方案比较粗糙.

NineGridView

使用它来替代MessagePicturesLayout是不错的选择.