Search code examples
androidarraylistpagerandroid-viewpager

Android PagerAdapter, get current position


I want to get the current position of the visible view of my PagerAdapter

I didn't see an obvious function like getPosition() and I want one.

I want to add an object into its arraylist at that position, but I need to know it first


Solution

  • You would use:

    int position = mViewPager.getCurrentItem()