Created
July 21, 2017 14:07
-
-
Save chowaikong/05d17037a80087c9b884642c1601da91 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
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