RecyclerView 中的弹跳滚动效果
Bounce scrolling effect in RecycleView
我想在android recycleview 上实现弹跳动画效果。
我该怎么做?
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
将RecyclerView
替换为RecyclerViewBouncy
。
添加依赖:
dependencies {
implementation 'com.chauthai.overscroll:overscroll-bouncy:0.1.0'
}
布局中:
<com.chauthai.overscroll.RecyclerViewBouncy .../>
您只能使用LinearLayoutManager
我想在android recycleview 上实现弹跳动画效果。 我该怎么做?
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
将RecyclerView
替换为RecyclerViewBouncy
。
添加依赖:
dependencies {
implementation 'com.chauthai.overscroll:overscroll-bouncy:0.1.0'
}
布局中:
<com.chauthai.overscroll.RecyclerViewBouncy .../>
您只能使用LinearLayoutManager