Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a fragment which contains a ViewPager. The ViewPager is associated with an adapter that contains a set of fragments.

Upon loading the parent fragment, I am met with an IllegalStateException with the message: java.lang.IllegalStateException: Recursive entry to executePendingTransactions.

Some research has led me to the conclusion that the system is unable display fragments within another fragment, HOWEVER there seems to be some indication that it is possible to do exactly this with the use of a ViewPager (A bug in ViewPager using it with other fragment).

In fact, if I add a button to my parent fragment which calls mPager.setAdapter(mAdapter) on my ViewPager when pressed, the ViewPager successfully loads. This is not ideal.

The issue then must be related to the fragment lifecycle. My question therefore, is this: Has anybody else found a way around this issue, and if so, how?

Is there some way to delay settings the adapter on the ViewPager until after the fragment transaction?

Here is my parent fragment code:

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    mView = inflater.inflate(R.layout.team_card_master, container, false);
    mViewPager = (ViewPager)mView.findViewById(R.id.team_card_master_view_pager);

    final Button button = (Button)mView.findViewById(R.id.load_viewpager_button);
    button.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            mViewPager.setAdapter(mAdapter);
            button.setVisibility(View.GONE);
        }
    });

    mAdapter = new ViewPagerAdapter(getFragmentManager());
 //     mViewPager.setAdapter(mAdapter);

    return mView;
}

And the adapter:

public class ViewPagerAdapter extends FragmentPagerAdapter {
    public ViewPagerAdapter(FragmentManager fm) {
        super(fm);
    }

    @Override
    public int getCount() {
        if (mCursor == null) return 0;
        else return mCursor.getCount();
    }

    @Override
    public Fragment getItem(int position) {
        Bundle b = createBundle(position, mCursor);
        return TeamCardFragment.newInstance(b);
    }
}
share|improve this question
2  
The ability to nest fragments has been added in revision 11 of the Android Support library. The Fragment class now has the method "getChildFragmentManager" . I created a simple project similar to this which can be found at github.com/marsucsb/nested-fragments – Marco Nov 15 '12 at 4:18

5 Answers

up vote 35 down vote accepted

use AsyncTask to set the adapter for viewPager. It works for me. The asyncTask is to make the original fragment complete it's transition. and then we proceed with viewPager fragments, basically to avoid recursion.

 @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    mView = inflater.inflate(R.layout.team_card_master, container, false);
    mViewPager = (ViewPager)mView.findViewById(R.id.team_card_master_view_pager);

    final Button button = (Button)mView.findViewById(R.id.load_viewpager_button);
    button.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            mViewPager.setAdapter(mAdapter);
            button.setVisibility(View.GONE);
        }
    });

    mAdapter = new ViewPagerAdapter(getFragmentManager());
    new setAdapterTask().execute();

    return mView;
}

private class setAdapterTask extends AsyncTask<Void,Void,Void>{
      protected Void doInBackground(Void... params) {
            return null;
        }

        @Override
        protected void onPostExecute(Void result) {
                   mViewPager.setAdapter(mAdapter);
        }
}
share|improve this answer
   
A brilliant solution. Thank you! – howettl Oct 8 '11 at 23:08
Cheers - This does seem like a hack, but it works perfect. – Jords Jan 30 '12 at 23:13
ok- not so perfect. I had an issue where the views in the viewpager were black when the view had been recreated - since the fragments inside are reused. I solved it with having this code in the fragment's onDestroyView: – Jords Jan 31 '12 at 0:56
1  
int position = 0; for (TabInfo info : mTabsAdapter.mTabs) { String tag = FragmentPagerAdapter.makeFragmentName(mViewPager.getId(), position); Fragment fragment; FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); if ((fragment = getFragmentManager().findFragmentByTag(tag)) != null) { ft.remove(fragment); } ft.commit(); position++; } ... it's pretty horrible :O – Jords Jan 31 '12 at 0:57
6  
Actually this gist i created does it better: gist.github.com/3405429 – Chris.Jenkins Aug 28 '12 at 21:50
show 1 more comment

Jords, I think You can use FragmentStatePagerAdapter instead of FragmentPageAdapter. It removes fragments for You.

share|improve this answer
this helped me out! thank you – caiuspb Mar 1 '12 at 12:13
Thank you!!! I was about to loose my mind! – Idan Nov 6 '12 at 15:46
Thank you for sharing the code with us.. It works just fine! – Cata Jan 10 at 19:43
Thanks a lot. It helps! – ihrupin Apr 24 at 21:32

I used Handler.post() to set adapter outside of original fragment transaction:

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    mHandler.post(new Runnable() {
        @Override
        public void run() {
            mViewPager.setAdapter(mAdapter);     
        }
    });        
}
share|improve this answer
Where is that mHandler coming from? – Dandre Allison Jul 9 '12 at 23:48
It should be a member and you can instantiate it in onCreate(): mHandler = new Handler(); – inazaruk Jul 10 '12 at 7:01
1  
Does this approach cause any issues with switching between Fragments? I'm currently having an issue if I go to a different Fragment then return to the one containing the ViewPager again. It's not showing the content and it's not scrolling properly. – Dandre Allison Aug 21 '12 at 16:31
use of Thread did the trick..thanks for the simple solution. – arunsoorya Sep 6 '12 at 5:57
@inazaruk can you please look at this link – ViTo Brothers yesterday

I just ran into this same problem. I had a Fragment that needed to host a ViewPager of Fragments. When I stacked another Fragment on top of my ViewPagerFragment, and then hit back, I would get an IllegalStateException. After checking the logs (when stacking a new Fragment), I found that my ViewPagerFragment would go through its lifecycle methods to stop and destroy, however its children Fragments in the the ViewPager would stay in onResume. I realized that the children Fragments should be managed by the FragmentManager for the ViewPagerFragment, not the FragmentManager of the Activity.

I understand at the time, the answers above were to get around the limitations of Fragments not being able to have children Fragments. However, now that the latest support library has support for Fragment nesting, you no longer need to hack around setting the adapter for your ViewPager, and passing getChildFragmentManager() is all you need. This has been working perfectly for me so far.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    mView = inflater.inflate(R.layout.team_card_master, container, false);
    mViewPager = (ViewPager) mView.findViewById(R.id.team_card_master_view_pager);

    mAdapter = new ViewPagerAdapter(getChildFragmentManager());
    mViewPager.setAdapter(mAdapter);

    return mView;
}
share|improve this answer

I have faced this problem when trying to initialize the viewPager adapter on the TabIndicator in on ViewCreated. After reading about it online I realised that this could be just because the fragment was not yet added to the activity. So I moved the initialization code to onStart() of the fragment, this should solve your problem. But not for me I still was getting same issue again.

But that was because in my code I was trying the bypass the normal async execution of pending task by explicitly call to executePendingTransactions(), after blocking that everything worked well

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.