摘要: 自pinterest使用了瀑布流展示图片后,有很多应用开始使用瀑布流的方式,像蘑菇街,美丽说。这里的瀑布流实现使用了开源代码。layout: 整个瀑布流用的是ScrollView的子类LazyScrollView。这个LazyScrollView中设置了一个监听器接口,用来监听ScrollView执行的不同阶段。接口如下:public interface OnScrollListener { void onBottom(); void onTop(); void onScroll(); void onAutoScroll(int l, int... 阅读全文
posted @ 2012-10-23 16:45 张兴业 阅读(572) 评论(0) 推荐(0) 编辑
摘要: android中提供了ListView控件,listview能够为我们展现丰富的内容,有时候我们为了提升用户体检,需要更炫而且更好用户体验的效果,pull to refresh(下拉刷新列表效果)就应运而生了。 pull to refresh更多的应用于获取最新的内容,比如新浪微博、腾讯微博等。目前网上有很多开源的pull to refresh的开源实现,这里也是参考开源代码实现的。Layout Activity// Set a listener to be invoked when the list should be refreshed. ((PullToRefreshLi... 阅读全文
posted @ 2012-10-23 16:36 张兴业 阅读(334) 评论(0) 推荐(0) 编辑