i use the ViewPager for switching views with left/right swipe.
The ViewPager needs an Adapter, so I\'ve built this one:
public class ListViewPagerAda
You can add a tag to the created view in the instantiateItem method:
view.setTag(position);
Later you can access the current selected view by:
mPager.findViewWithTag(mPager.getCurrentItem());