SnapHelper的一个Demo,
伴有效果:滑动时item中的View位置、大小会跟随滚动变化, 当从左边滑出时会渐变缩小消失
PS:基于gravitysnaphelper
A SnapHelper that snaps a RecyclerView to an edge.
Add this to your build.gradle:
implementation 'com.github.rubensousa:gravitysnaphelper:2.2.1'
You can either create a GravitySnapHelper, or use GravitySnapRecyclerView.
If you want to use GravitySnapHelper directly, you just need to create it and attach it to your RecyclerView:
val snapHelper = GravitySnapHelper(Gravity.START)
snapHelper.attachToRecyclerView(recyclerView)
If you want to use GravitySnapRecyclerView, you can use the following xml attributes for customisation:
<attr name="snapGravity" format="enum">
<attr name="snapEnabled" format="boolean" />
<attr name="snapLastItem" format="boolean" />
<attr name="snapToPadding" format="boolean" />
<attr name="snapScrollMsPerInch" format="float" />
<attr name="snapMaxFlingSizeFraction" format="float" />
Example:
<com.github.rubensousa.gravitysnaphelper.GravitySnapRecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:snapGravity="start" />
val snapHelper = GravitySnapHelper(Gravity.START)
snapHelper.attachToRecyclerView(recyclerView)
val snapHelper = GravitySnapHelper(Gravity.CENTER)
snapHelper.attachToRecyclerView(recyclerView)
If you use setMaxFlingSizeFraction or setMaxFlingDistance you can change the maximum fling distance allowed.
- setMaxFlingDistance or setMaxFlingSizeFraction - changes the max fling distance allowed.
- setScrollMsPerInch - changes the scroll speed.
- setGravity - changes the gravity of the SnapHelper.
- setSnapToPadding - enables snapping to padding (default is false)
- smoothScrollToPosition and scrollToPosition
- RTL support out of the box
Take a look at these blog posts if you're using nested RecyclerViews
Copyright 2018 The Android Open Source Project
Copyright 2019 Rúben Sousa
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.