Android UI开发第二十二篇——android 瀑布流图片实现

    自pinterest使用了瀑布流展示图片后,有很多应用开始使用瀑布流的方式,像蘑菇街,美丽说。这里的瀑布流实现使用了开源代码。

  


layout:

<?xml version="1.0" encoding="utf-8"?>
<com.dodowaterfall.LazyScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/waterfall_scroll"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scrollbars="vertical" >

    <LinearLayout
        android:id="@+id/waterfall_container"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@android:color/white" >
    </LinearLayout>

</com.dodowaterfall.LazyScrollView>


   整个瀑布流用的是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类中,方便维护。


    瀑布流最重要的是图片的内存回收机制,防止发生内存溢出的情况(OOM)。


参考:

https://github.com/dodola/android_waterfall

http://developer.android.com/training/displaying-bitmaps/process-bitmap.html


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值