Fragments seem to be very nice for separetion of UI logic into some modules. But along with ViewPager it's lifecycle is still misty for me. So Guru thoughts are badly needed!

Edit

See dumb solution below ;-)

Scope

Main activity has a ViewPager with fragments. Those fragments could implement a little bit different logic for other (submain) activities, so fragments data is filled via callback interface inside activity. And everything works fine on first launch, but!..

Problem

When activity goes recreated (e.g. on orientation change) so the ViewPager's fragments do. The code (you'll find below) says that every time activity is created I try to create a new ViwPager fragments adapter the same as fragments (maybe this is the problem) but FragmentManager already has all these fragments keeped somewhere (where?) and starts recreation mechanism for those. So recreation mechanism calls "old" fragments onAttach, onCreateView etc with my callback interface call for initiating data via Activity's implemented method. But this method points to newly created fragment which is created via Activity's onCreate method.

Issue

Maybe I'm using wrong patterns but even Android 3 Pro book doesn't have much about it. So, please, give me one-two punch and point how to do it the right way. Many thanks!

Code

Main Activity

public class DashboardActivity extends BasePagerActivity implements OnMessageListActionListener {

private MessagesFragment mMessagesFragment;

@Override
protected void onCreate(Bundle savedInstanceState) {
    Logger.d("Dash onCreate");
    super.onCreate(savedInstanceState);

    setContentView(R.layout.viewpager_container);
    new DefaultToolbar(this);

    // create fragments to use
    mMessagesFragment = new MessagesFragment();
    mStreamsFragment = new StreamsFragment();

    // set titles and fragments for view pager
    Map<String, Fragment> screens = new LinkedHashMap<String, Fragment>();
    screens.put(getApplicationContext().getString(R.string.dashboard_title_dumb), new DumbFragment());
    screens.put(getApplicationContext().getString(R.string.dashboard_title_messages), mMessagesFragment);

    // instantiate view pager via adapter
    mPager = (ViewPager) findViewById(R.id.viewpager_pager);
    mPagerAdapter = new BasePagerAdapter(screens, getSupportFragmentManager());
    mPager.setAdapter(mPagerAdapter);

    // set title indicator
    TitlePageIndicator indicator = (TitlePageIndicator) findViewById(R.id.viewpager_titles);
    indicator.setViewPager(mPager, 1);

}

/* set of fragments callback interface implementations */

@Override
public void onMessageInitialisation() {

    Logger.d("Dash onMessageInitialisation");
    if (mMessagesFragment != null)
        mMessagesFragment.loadLastMessages();
}

@Override
public void onMessageSelected(Message selectedMessage) {

    Intent intent = new Intent(this, StreamActivity.class);
    intent.putExtra(Message.class.getName(), selectedMessage);
    startActivity(intent);
}

BasePagerActivity aka helper

public class BasePagerActivity extends FragmentActivity {

BasePagerAdapter mPagerAdapter;
ViewPager mPager;
}

Adapter

public class BasePagerAdapter extends FragmentPagerAdapter implements TitleProvider {

private Map<String, Fragment> mScreens;

public BasePagerAdapter(Map<String, Fragment> screenMap, FragmentManager fm) {

    super(fm);
    this.mScreens = screenMap;
}

@Override
public Fragment getItem(int position) {

    return mScreens.values().toArray(new Fragment[mScreens.size()])[position];
}

@Override
public int getCount() {

    return mScreens.size();
}

@Override
public String getTitle(int position) {

    return mScreens.keySet().toArray(new String[mScreens.size()])[position];
}

// hack. we don't want to destroy our fragments and re-initiate them after
@Override
public void destroyItem(View container, int position, Object object) {

    // TODO Auto-generated method stub
}

}

Fragment

public class MessagesFragment extends ListFragment {

private boolean mIsLastMessages;

private List<Message> mMessagesList;
private MessageArrayAdapter mAdapter;

private LoadMessagesTask mLoadMessagesTask;
private OnMessageListActionListener mListener;

// define callback interface
public interface OnMessageListActionListener {
    public void onMessageInitialisation();
    public void onMessageSelected(Message selectedMessage);
}

@Override
public void onAttach(Activity activity) {
    super.onAttach(activity);
    // setting callback
    mListener = (OnMessageListActionListener) activity;
    mIsLastMessages = activity instanceof DashboardActivity;

}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    inflater.inflate(R.layout.fragment_listview, container);
    mProgressView = inflater.inflate(R.layout.listrow_progress, null);
    mEmptyView = inflater.inflate(R.layout.fragment_nodata, null);
    return super.onCreateView(inflater, container, savedInstanceState);
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    // instantiate loading task
    mLoadMessagesTask = new LoadMessagesTask();

    // instantiate list of messages
    mMessagesList = new ArrayList<Message>();
    mAdapter = new MessageArrayAdapter(getActivity(), mMessagesList);
    setListAdapter(mAdapter);
}

@Override
public void onResume() {
    mListener.onMessageInitialisation();
    super.onResume();
}

public void onListItemClick(ListView l, View v, int position, long id) {
    Message selectedMessage = (Message) getListAdapter().getItem(position);
    mListener.onMessageSelected(selectedMessage);
    super.onListItemClick(l, v, position, id);
}

/* public methods to load messages from host acitivity, etc... */
}

Solution

The dumb solution is to save fragments inside onSaveInstanceState (of host Activity) with putFragment and get 'em inside onCreate via getFragment. But I still have a string feeling that things shouldn't work like thant... See code below:

    @Override
protected void onSaveInstanceState(Bundle outState) {

    super.onSaveInstanceState(outState);
    getSupportFragmentManager()
            .putFragment(outState, MessagesFragment.class.getName(), mMessagesFragment);
}

protected void onCreate(Bundle savedInstanceState) {
    Logger.d("Dash onCreate");
    super.onCreate(savedInstanceState);

    ...
    // create fragments to use
    if (savedInstanceState != null) {
        mMessagesFragment = (MessagesFragment) getSupportFragmentManager().getFragment(
                savedInstanceState, MessagesFragment.class.getName());
                StreamsFragment.class.getName());
    }
    if (mMessagesFragment == null)
        mMessagesFragment = new MessagesFragment();
    ...
}
link|improve this question

I wonder now: should I use a very different approach or try to save fragments of main activity (Dashboard) via onSavedInstancestate to use them in onCreate(). Is there a proper way to save those fragments and get them from bundle in onCreate? They don't seem to be parcelable... – Aleksey Malevaniy Oct 31 '11 at 9:38
2nd approach works — see "Sulution". But it seems to be an ugly piece of code, isn't is? – Aleksey Malevaniy Oct 31 '11 at 10:10
For the sake of the effort to cleanup the Android tag (details here: meta.stackoverflow.com/questions/100529/… ), would you mind posting your solution as an answer and marking it as the selected one? That way it won't show up as an unanswered question :) – Alexander Lucas Nov 3 '11 at 18:27
yeah, think it's OK. Hoped for smth better than mine... – Aleksey Malevaniy Nov 3 '11 at 21:45
feedback

4 Answers

up vote 3 down vote accepted

When the FragmentPagerAdapter adds a fragment to the FragmentManager, it uses a special tag based on the particular position that the fragment will be placed. FragmentPagerAdapter.getItem(int position) is only called when a fragment for that position does not exist. After rotating, Android will notice that it already created/saved a fragment for this particular position and so it simply tries to reconnect with it with FragmentManager.findFragmentByTag(), instead of creating a new one. All of this comes free when using the FragmentPagerAdapter and is why it is usual to have your fragment initialisation code inside the getItem(int) method.

Even if we were not using a FragmentPagerAdapter, it is not a good idea to create a new fragment every single time in Activity.onCreate(Bundle). As you have noticed, when a fragment is added to the FragmentManager, it will be recreated for you after rotating and there is no need to add it again. Doing so is a common cause of errors when working with fragments.

A usual approach when working with fragments is this:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ...

    CustomFragment fragment;
    if (savedInstanceState != null) {
        fragment = (CustomFragment) getSupportFragmentManager().findFragmentByTag("customtag");
    } else {
        fragment = new CustomFragment();
        getSupportFragmentManager().beginTransaction().add(R.id.container, fragment, "customtag").commit(); 
    }

    ...

}

When using a FragmentPagerAdapter, we relinquish fragment management to the adapter, and do not have to perform the above steps. By default, it will only preload one Fragment in front and behind the current position (although it does not destroy them unless you are using FragmentStatePagerAdapter). This is controlled by ViewPager.setOffscreenPageLimit(int). Because of this, directly calling methods on the fragments outside of the adapter is not guaranteed to be valid, because they may not even be alive.

To cut a long story short, your solution to use putFragment to be able to get a reference afterwards is not so crazy, and not so unlike the normal way to use fragments anyway (above). It is difficult to obtain a reference otherwise because the fragment is added by the adapter, and not you personally. Just make sure that the offscreenPageLimit is high enough to load your desired fragments at all times, since you rely on it being present. This bypasses lazy loading capabilities of the ViewPager, but seems to be what you desire for your application.

Another approach is to override FragmentPageAdapter.instantiateItem(View, int) and save a reference to the fragment returned from the super call before returning it (it has the logic to find the fragment, if already present).

For a fuller picture, have a look at some of the source of FragmentPagerAdapter (short) and ViewPager (long).

link|improve this answer
Brilliant! Things become cleaner now. Many thanks. – Aleksey Malevaniy Mar 11 at 10:51
feedback

What is that BasePagerAdapter? You should use one of the standard pager adapters -- either FragmentPagerAdapter or FragmentStatePagerAdapter, depending on whether you want Fragments that are no longer needed by the ViewPager to either be kept around (the former) or have their state saved (the latter) and re-created if needed again.

Sample code for using ViewPager can be found here: http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/index.html

It is true that the management of fragments in a view pager across activity instances is a little complicated, because the FragmentManager in the framework takes care of saving the state and restoring any active fragments that the pager has made. All this really means is that the adapter when initializing needs to make sure it re-connects with whatever restored fragments there are. You can look at the code for FragmentPagerAdapter or FragmentStatePagerAdapter to see how this is done.

link|improve this answer
BasePagerAdapter code is available in my question. As one can see it simply extends FragmentPagerAdapter for purpose of implementing TitleProvider. So everything's already been working with android dev suggested approach. – Aleksey Malevaniy Nov 4 '11 at 9:52
I wasn't aware of "FragmentStatePagerAdapter". You saved me literally hours. Thanks. – Knossos Apr 20 at 7:35
feedback

This is what I use for this particular problem. Use getFragment(int position) to access the current fragment in that position.

link|improve this answer
feedback

The simple solution is to treat Fragments like Activities and just re-create everything after a configuration change, from the start intent and savedInstanceState. But you're right, it would be more elegant to just keep the fragments.

I have done that by creating my own AppFragmentManager apart from the FragmentManager. AppFragmentManager keeps handles to existing fragments and re-displays them when needed. The issue here is that you need to keep handles to views in which to display the fragments too, and you want to keep track of what fragment is displayed where, and in what order the fragments have been displayed, in order to decide what pressing the back button should do.

This is what my AppFragmentManager does:

public interface AppFragmentManager {

    public void addView(String name, View view);
    public View getView(String name);
    public void removeView(String name);

    public void addFragment(Fragment fragment);
    public Fragment getFragment(String fragmentSimpleName);
    public void removeFragment(String fragmentSimpleName);
}

You add views in which you want to show one or more fragments. If the AppFragmentManager is a singleton, it will maintain references to the fragments for you.

This is in my Home activity:

       /*
         * find out if we're a tablet
         */
        detailsView = (LinearLayout) findViewById(R.id.detailsView);
        if(detailsView !=null){
            appFragmentManager.addView("details", detailsView);
        }

If there's a detailsView (which I have define in layout-large, not in layout), the app is on a tab and you put the fragments in the details view. Otherwise, there's activities that contain one fragment, which you use on a phone.

Btw, I use RoboGuice to inject AppFragmentManager in activities and classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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