Android ListView Item加载动画JazzyListView

来源:互联网 发布:外国网友评论中国网络 编辑:程序博客网 时间:2024/06/07 19:28

先奉上项目源码地址:https://github.com/twotoasters/JazzyListView

效果图地址:http://lab.hakim.se/scroll-effects/

因为感觉这个比ListViewAnimations简单很多,所以在这里分享一下;

配置build.gradle :

compile 'com.twotoasters.jazzylistview:library:1.2.1'compile 'com.twotoasters.jazzylistview:library-recyclerview:1.2.1'

布局:

<com.twotoasters.jazzylistview.JazzyListView    android:id="@+id/list"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:divider="@null"    android:dividerHeight="5dp"    android:scrollbars="none" />


主界面代码:

普通listView配置Adapter这里就不写了,

listView.setAdapter(new Myadapter(lists, this));listView.setTransitionEffect(new GrowEffect());

如果想更换一些效果的话更改

setTransitionEffect();

GrowEffect()
TwirlEffect()
HelixEffect()
ReverseFlyEffect()
SlideInEffect()
WaveEffect()
ZipperEffect()
CardsEffect()
CurlEffect()
FadeEffect()
FlyEffect()
等等.....



1 0