I have a ViewPager, and I\'d like to get the current selected and visible view, not a position.
getChildAt(getCurrentItem)
Vi
I just came across the same issue and resolved it by using:
View view = MyActivity.mViewPager.getFocusedChild();