Skip to content

Instantly share code, notes, and snippets.

@CodeK1988
Last active October 28, 2019 09:18
Show Gist options
  • Select an option

  • Save CodeK1988/aa83a726d8e6043e598fb708ac229893 to your computer and use it in GitHub Desktop.

Select an option

Save CodeK1988/aa83a726d8e6043e598fb708ac229893 to your computer and use it in GitHub Desktop.
Remove ViewPager2 Overscroll animatoin
thanks
1.https://stackoverflow.com/questions/56878906/remove-viewpager2-overscroll-animatoin
viewPager2.apply {
orientation = ViewPager2.ORIENTATION_HORIZONTAL
(getChildAt(0) as RecyclerView).overScrollMode = RecyclerView.OVER_SCROLL_NEVER
}
android:overScrollMode="never" is not working
2.tabLayout setupwithviewPager2
TabLayoutMediator(tabLayout, viewPager2,
TabLayoutMediator.TabConfigurationStrategy { tab, position ->
tab.text = listBean.skill[position].title
}).attach()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment