Like Doug said. That's sort of how i'm doing it and had no problem.

So #2 kind of.

Here's my onLoadFinished :

@Override
public void onLoadFinished(Loader<ArrayList<Tour>> loader, ArrayList<Tour> 
data) { 

CatalogTabFeatured featuredFragment = (CatalogTabFeatured) 
getSupportFragmentManager().findFragmentByTag(makeFragmentName(mViewPager.getId(),
 
0));

featuredFragment.setData(data);


CatalogTabRecents recentsFragment = (CatalogTabRecents) 
getSupportFragmentManager().findFragmentByTag(makeFragmentName(mViewPager.getId(),
 
1));

recentsFragment.setData(data);

CatalogTabRated ratedFragment = (CatalogTabRated) 
getSupportFragmentManager().findFragmentByTag(makeFragmentName(mViewPager.getId(),
 
2));

ratedFragment.setData(data);

}

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to