滚动结束时,在Recylerview上为项目添加动画效果

时间:2017-07-23 12:17:22

标签: animation android-recyclerview

在listview或scrollview中,我们可以看到滚动丰富并结束的小动画。

我想在Recylerview上添加该效果

1 个答案:

答案 0 :(得分:2)

我找到了这两个GitHub库:

选项1: EverythingMe/overscroll-decor

RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recycler_view);

// Horizontal
OverScrollDecoratorHelper.setUpOverScroll(recyclerView, OverScrollDecoratorHelper.ORIENTATION_HORIZONTAL);
// Vertical
OverScrollDecoratorHelper.setUpOverScroll(recyclerView, OverScrollDecoratorHelper.ORIENTATION_VERTICAL);

选项2: chthai64/overscroll-bouncy-android

<com.chauthai.overscroll.RecyclerViewBouncy
    android:id="@+id/recyclerView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

希望它有所帮助!

相关问题