-
-
Save ntngel1/41dc8bbd9b9900fc2fd641b9eeac2175 to your computer and use it in GitHub Desktop.
This file contains 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
override fun findSnapView(layoutManager: RecyclerView.LayoutManager) = | |
if (layoutManager is LinearLayoutManager) { | |
if (layoutManager.canScrollHorizontally()) { | |
getStartView(layoutManager, getHorizontalHelper(layoutManager)) | |
} else { | |
getStartView(layoutManager, getVerticalHelper(layoutManager)) | |
} | |
} else { | |
super.findSnapView(layoutManager) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment