今天看了网上的一篇关于android瀑布流实例的源码,并按照自己的喜好改了些内容。
源码路径:https://github.com/dodola/android_waterfall
我按照个人喜好更改后的源码路径:https://github.com/tingzi/android_waterfall
瀑布流如图所示:
根据对源码的分析,暂以我更改后的代码为例,分析如下:
整个瀑布流用的是ScrollView的子类LazyScrollView。
这个LazyScrollView中设置了一个监听器接口,用来监听ScrollView执行的不同阶段。接口如下:
- public interface OnScrollListener {
- void onBottom();
- void onTop();
- void onScroll();
- void onAutoScroll(int l, int t, int oldl, int oldt);
- }
对于每一幅图,都用一个ImageView的子类FlowView来表示。
为了不阻塞UI线程,图片加载和图片更新都分别用不同的线程来做。这两个线程都在FlowView中。FlowView提供了加载和更新的接口给Activity调用。
瀑布流实例的主Activity是MainActivity,常量都保存在Constants类中,方便维护。