Issue with ViewPager in application
I know we can flip pages horizontally using ViewPager.But is there any function which i can override which can catch the action when i will flip pages left and right.I mean any function which will be called when i wi开发者_如何学Goll flip left and any function which will be called when i will flip right.Anyone having any idea please share. thanks in advance
You can detect the page transition by calling setOnPageChangeListener()
and specifying your own OnPageChangeListener
.
精彩评论