i use the ViewPager for switching views with left/right swipe.

The ViewPager needs an Adapter, so i builded this one:

public class ListViewPagerAdapter extends PagerAdapter {

protected static final String TAG = "ListViewPagerAdapter";
protected static final int NUM_VIEWS = 3;

protected final Activity mActivity;

public ListViewPagerAdapter(Activity activity) {
    mActivity = activity;
}

@Override
public int getCount() {
    return NUM_VIEWS;
}

@Override
public void startUpdate(View container) {}

@Override
public Object instantiateItem(View container, int position) {
    // ViewPager
    ViewPager viewPager = (ViewPager) container;

    // Wird verwendet, um die Views aufzurufen
    LayoutInflater layoutInflater = mActivity.getLayoutInflater();

    // Standardmäßig ist news eingeblendet
    View view = layoutInflater.inflate(R.layout.news_fragment, null);
    // Falls sich die Position verändert, so verändert sich auch die View
    if (position == 0) {
        view = layoutInflater.inflate(R.layout.favorite_fragment, null);
    } else if (position == 2) {
        view = layoutInflater.inflate(R.layout.videos_fragment, null);
    }

    // View einblenden
    viewPager.addView(view, 0);

    return view;
}

@Override
public void destroyItem(View container, int position, Object object) {
    // ViewPager
    ViewPager viewPager = (ViewPager) container;
    // View
    View view = (View) object;

    // View löschen
    viewPager.removeView(view);
}

@Override
public void finishUpdate(View container) {}

@Override
public boolean isViewFromObject(View view, Object object) {
    View _view = (View) object;
    return view == _view;
}

@Override
public Parcelable saveState() {
    return null;
}

@Override
public void restoreState(Parcelable state, ClassLoader loader) {}
 }

Now, i want to get the current focused view by the viewpager. I tried getChildAt(x), but it does not work.

Are there some example, or do you have any idea how to get the current view?

Thanks

link|improve this question
feedback

4 Answers

You have to register a listener to your ViewPager :

pager.setOnPageChangeListener(new MyPageChangeListener()); 

You have to customize the listener by extending a stub listener:

private int focusedPage = 0;
private class MyPageChangeListener extends ViewPager.SimpleOnPageChangeListener {
    @Override
    public void onPageSelected(int position) {
        focusedPage = position;
    }
}

I found this by looking at the ViewPager.java source code in the compatibility library. I read that we can do more, for example catch onPageScrollStateChanged.

To build the adapter, I used the code on this blog post. You might want to have a look.

link|improve this answer
5  
I see how that gets you the current position but I'm not clear on how you can get the current view from that. – Joe Regan Aug 30 '11 at 20:10
2  
Please be aware that if you are using a ViewPagerIndicator in combination with the ViewPager, the listener must be set on the indicator, not on the pager. – markjan Sep 13 '11 at 9:49
@JoeRegan I was able to get the current view from getChildAt(int) on the ViewPager, giving it the last known position that I got from the OnPageChangeListener. – Jake Basile Nov 14 '11 at 20:56
3  
it only works when views count is less than 3 – Yuriy Jan 30 at 14:37
feedback

It is possible to save the currently active object (View, Fragment, ...) by overwriting PagerAdapter.setPrimaryItem. For example:

private View mCurrentView;

@Override
public void setPrimaryItem(ViewGroup container, int position, Object object) {
    mCurrentView = (View)object;
}
link|improve this answer
feedback

I recently needed to implement this exact solution. Here's the way I did it:

Map<Integer, Object> views = Maps.newHashMap();

@Override
public Object instantiateItem(View container, int position) {
  /* Create and add your View here */
  Object result = ???

  views.put(position, result);
  return result;
}

@Override
public void destroyItem(View container, int position, Object object) {
  /** Remove your View here */

  views.remove(position);
}

protected View findViewForPosition(int position) {
  Object object = views.get(position);
  if (object != null) {
    for (int i = 0; i < getChildCount(); i++) {
      View view = getChildAt(i);
      if (isViewFromObject(view, object)) {
        return view;
      }
    }
  }
  return null;
}
link|improve this answer
This works for me, thanks! But in your findViewForPosition(int) method, why iterate through the children and call isViewFromObject(View,Object)? I've implemented this method simply as return views.get(position); and haven't yet had any problems. – Leo Accend Nov 13 '11 at 22:40
Because there is no guarantees that the children are added to the container in any particular order. Also the PagerAdapter API allows for an arbitrary object reference to be returned, this isn't necessarily a View. I made a mistake in my sample, the Map should be Map<Integer, Object> – Mark Renouf Nov 14 '11 at 2:12
still, this wont give u the current displayed or focussed view, as in the above function I will need to pass a position and that is value is quite hard to get i.e. the current positioned view, if i could have got the position, i cud have directly used the getChildAt(x) rather then this..getCurrentItem() returns the index from data set. – dcool Mar 1 at 11:45
feedback

To get focused view I use this way:

When I inflate my view before add it on ViewPager I set tag to it. Then I check this tag.

private View getCurrentView()
{
    for (int i = 0; i < pager.getChildCount(); i++)
    {
        View v = pager.getChildAt(i);
        if (v != null)
        {
            if (v.getTag().equals(pageList.get(pager.getCurrentItem()).getTag())) return v;
            // pageList is a list of pages that I pass to page adapter
        }
    }
    return null;
}
link|improve this answer
what is the tag value that u r matching here? secondly where do u set the tag value in pageList? as If i tried setting it intantiateItem method but again that is based upon the view position not the acutal data object index in the pageList? – dcool Mar 1 at 12:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.