I want to implement bounce animation effect on android recycleview. how can I do that?
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
Replace RecyclerView
with RecyclerViewBouncy
.
Add dependency:
dependencies {
implementation 'com.chauthai.overscroll:overscroll-bouncy:0.1.0'
}
In layout:
<com.chauthai.overscroll.RecyclerViewBouncy .../>
You can only use LinearLayoutManager