java.lang.Object | |
↳ | android.support.v4.view.ViewPager.SimpleOnPageChangeListener |
Simple implementation of the ViewPager.OnPageChangeListener
interface with stub
implementations of each method. Extend this if you do not intend to override
every method of ViewPager.OnPageChangeListener
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called when the scroll state changes.
| |||||||||||
This method will be invoked when the current page is scrolled, either as part
of a programmatically initiated smooth scroll or a user initiated touch scroll.
| |||||||||||
This method will be invoked when a new page becomes selected.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.support.v4.view.ViewPager.OnPageChangeListener
|
Called when the scroll state changes. Useful for discovering when the user begins dragging, when the pager is automatically settling to the current page, or when it is fully stopped/idle.
state | The new scroll state. |
---|
This method will be invoked when the current page is scrolled, either as part of a programmatically initiated smooth scroll or a user initiated touch scroll.
position | Position index of the first page currently being displayed. Page position+1 will be visible if positionOffset is nonzero. |
---|---|
positionOffset | Value from [0, 1) indicating the offset from the page at position. |
positionOffsetPixels | Value in pixels indicating the offset from position. |
This method will be invoked when a new page becomes selected. Animation is not necessarily complete.
position | Position index of the new selected page. |
---|