I have ViewPager and below it I have 10 buttons. By clicking on button, for example #4, the pager goes immediately to page #4 by mPager.setCurrentItem(3);. But, I want to disable the paging by swiping with finger horizontally. Thus, the paging is done ONLY by clicking on the buttons.
So, how I can disable the swiping with finger?
|
|
||||
|
|
|
You need to subclass ViewPager. onTouchEvent has a lot of good things in it that you don't want to change, like allowing child views to get touches. onInterceptTouchEvent is what you want to change. If you look at the code for ViewPager, you'll see the comment:
Here's a complete solution: First, add this class to your src folder:
Next, make sure to use this class instead of the regular ViewPager, which you probably specified as android.support.v4.view.ViewPager. In your layout file, you'll want to specify it with something like:
This particular example is in a LinearLayout and is meant to take up the entire screen, which is why layout_weight is 1 and layout_height is 0dp. |
|||||||||||||
|
|
The simplest way is to setOnTouchListener and return true for ViewPager.
|
|||||||
|
|
The more general extension of ViewPager would bet to create a "SetPagingEnabled" method so that we can enable and disable paging on the fly. To enable / disable the swiping, just overide two methods: "onTouchEvent" and "onInterceptTouchEvent". Both will return "false" if the paging was disabled.
Then select this instead of the builtin viewpager in XML
You just need to call the "setPagingEnabled" method with "false" and users won't be able to swipe to paginate. |
||||
|
|
|
Try overriding and returning true from either onInterceptTouchEvent() and/or onTouchEvent(), which will consume touch events on the pager. |
|||||
|