Created
August 31, 2018 14:35
-
-
Save ricknout/aa61c80d9a3b66f6be187e8773d455ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nickrout.snaphelperlistener | |
import androidx.recyclerview.widget.RecyclerView | |
import androidx.recyclerview.widget.SnapHelper | |
fun SnapHelper.getSnapPosition(recyclerView: RecyclerView): Int { | |
val layoutManager = recyclerView.layoutManager ?: return RecyclerView.NO_POSITION | |
val snapView = findSnapView(layoutManager) ?: return RecyclerView.NO_POSITION | |
return layoutManager.getPosition(snapView) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment