Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A SnapHelper that snaps a RecyclerView to an edge.

License

NotificationsYou must be signed in to change notification settings

rubensousa/GravitySnapHelper

Repository files navigation

A SnapHelper that snaps a RecyclerView to an edge.

Setup

Add this to your build.gradle:

implementation'com.github.rubensousa:gravitysnaphelper:2.2.2'

How to use

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:

<attrname="snapGravity"format="enum"><attrname="snapEnabled"format="boolean" /><attrname="snapLastItem"format="boolean" /><attrname="snapToPadding"format="boolean" /><attrname="snapScrollMsPerInch"format="float" /><attrname="snapMaxFlingSizeFraction"format="float" />

Example:

<com.github.rubensousa.gravitysnaphelper.GravitySnapRecyclerViewandroid:id="@+id/recyclerView"android:layout_width="match_parent"android:layout_height="wrap_content"app:snapGravity="start" />

Start snapping

val snapHelper=GravitySnapHelper(Gravity.START)snapHelper.attachToRecyclerView(recyclerView)

Center snapping

val snapHelper=GravitySnapHelper(Gravity.CENTER)snapHelper.attachToRecyclerView(recyclerView)

Limiting fling distance

If you usesetMaxFlingSizeFraction orsetMaxFlingDistanceyou can change the maximum fling distance allowed.

With decoration

Features

  1. setMaxFlingDistance orsetMaxFlingSizeFraction - changes the max fling distance allowed.
  2. setScrollMsPerInch - changes the scroll speed.
  3. setGravity - changes the gravity of the SnapHelper.
  4. setSnapToPadding - enables snapping to padding (default is false)
  5. smoothScrollToPosition andscrollToPosition
  6. RTL support out of the box

Nested RecyclerViews

Take a look at these blog posts if you're using nested RecyclerViews

  1. Improving scrolling behavior of nested RecyclerViews

  2. Saving scroll state of nested RecyclerViews

License

Copyright 2018 The Android Open Source ProjectCopyright 2019 Rúben SousaLicensed 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.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.

About

A SnapHelper that snaps a RecyclerView to an edge.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors3

  •  
  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp