Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app with a ViewPager and three Fragments. I'm trying to figure out how to get the current Fragment being viewed so I can get at its arguments.

I have an OnPageChangeListener grabbing the current page index, but

ViewPager.getChildAt(int position);

returns a View. What's the relationship between this View and the current Fragment?

Thank you.

share|improve this question

5 Answers

up vote 19 down vote accepted

I finally found an answer that worked for me. Basically, you can access the fragment for a viewPager page by using the tag "android:switcher:"+R.id.viewpager+":0".

share|improve this answer
4  
The method in the linked answer doesn't work with FragmentStatePagerAdapter, but the second answer to the same linked question has a method that does. – Adam L. Aug 6 '12 at 21:59

On the odd-chance you're still trying to solve this problem:

Extend FragmentPagerAdapter. In the constructor, build the Fragments you need and store them in a List (array/ArrayList) of Fragments.

private final int numItems = 3;
Fragment[] frags;

public SwipeAdapter (FragmentManager fm) {
    super(fm);

    //Instantiate the Fragments
    frags = new Fragment[numItems];

    Bundle args = new Bundle();
    args.putString("arg1", "foo");

    frags[0] = new MyFragment();
    frags[1] = new YourFragment();
    frags[2] = new OurFragment();
    frags[2].setArguments(args);
}

Then for getItem(int position), you can do something like

public Fragment getItem(int position) {
    return frags[position];
}

I'm not sure if this is the generally accepted way of doing it but it worked for me.

share|improve this answer
your solution is fine if pre-creating every fragment isn't an objection. don't underestimate how costly your fragments can be though. – Rene Feb 27 at 13:44
Good point. I've also had bad issues with this way when Activities restart, and the Fragments' getActivity() doesn't return the current activity, but some previous instance which has been destroyed – Mike T Feb 28 at 5:53
This works until you rotate the device. Then the fragments will survive the rotation, but your adapter's cache won't. Now when you ask for the currently shown fragment you will create a new fragment that isn't used at all. – Mark Gjøl Mar 5 at 9:33
Agreed. I don't think this is a great approach now that I've learned a bit more. Many apps lock screen orientation (such as games) but even then, if the app goes to the background and then comes back, the same problem will happen I think. – Mike T Mar 5 at 18:39

I've solved this problem the other way round. Instead of searching for the fragment from the activity, I'm registering the Fragment during it's onAttach() method at it's owner activity and de-registering it in the onStop() method. Basic Idea:

Fragment:

@Override
public void onAttach(Activity activity) {
    super.onAttach(activity);
    try{
        mActivity = (IMyActivity)activity;
    }catch(ClassCastException e){
        throw new ClassCastException(activity.toString() +" must be a IMyActivity");
    }

    mActivity.addFragment(this);
}

@Override
public void onStop() {
    mActivity.removeFragment(this);
    super.onStop();
}

IMyActivity:

public interface IFriendActivity {
    public void addFragment(Fragment f);
    public void removeFragment(Fragment f); 
}

MyActivity:

public class MyActivity implements IMyActivity{

    [...]

    @Override
    public void addFragment(Fragment f) {
        mFragments.add(f);
    }

    @Override
    public void removeFragment(Fragment f) {
        mFragments.remove(f);
    }

}
share|improve this answer

It's been explained here : http://developer.android.com/guide/topics/fundamentals/fragments.html

In OnCreateView you must return a view to draw a UI for your fragment, I think that's the relationship.

Also this question might be similar: Get focused View from ViewPager

share|improve this answer
Hi Dante, yeah, I understand that, but I'm trying to get the Fragment, given the View. – MitchellSalad Dec 21 '11 at 18:03
Ok, what about getFragmentManager().findFragmentById(R.id.fragment_container); then? You'll get the current fragment in that container I think. – Dante Dec 21 '11 at 21:14
Found this page because I have the same problem. findFragmentById isn't working for me. – James Dec 23 '11 at 2:57

You can do so: - On the class extent of a view pager adapter (such as PagerAdapter , FragmentStatePagerAdapter...) override method instantiateItem :

@Override
public Object instantiateItem(ViewGroup container, int position) {
        final Fragment frag = (Fragment) super.instantiateItem(container, position);
        if(frag instanceof ListNoteOfTypeFragment){                
            final ListNoteOfTypeFragment listNoteOfTypeFragment = (ListNoteOfTypeFragment) frag;
            //do whatever you want with your fragment here
            listNoteOfTypeFragment.setNoteChangeListener(mListener);
        }
        return frag;
    }    
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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