Skip to content

Instantly share code, notes, and snippets.

@chowaikong
Created July 21, 2017 14:07
Show Gist options
  • Save chowaikong/05d17037a80087c9b884642c1601da91 to your computer and use it in GitHub Desktop.
Save chowaikong/05d17037a80087c9b884642c1601da91 to your computer and use it in GitHub Desktop.
class NonScrollViewPager : ViewPager {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
override fun onTouchEvent(event: MotionEvent): Boolean {
return false
}
override fun onInterceptTouchEvent(event: MotionEvent): Boolean {
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment