I currently have an app that relies heavily on Intents and the extras given to them before starting the activity. The extras are used when calling a webservice which in turn supplies the content that needs to be shown

I am trying to convert that model, to one where I have a static Fragment (lets call it Player) at the bottom of my screen, and another Fragment (lets call it Content) above it which will show the main content. By selecting options on the main screen other content will be shown by replacing the Content Fragment.

But, these new Fragments are currently the Intents that rely on the extras so heavily. Is there a way to replace a Fragment by a new one, but still be able to add extras to it?

If so, let's say I have the following piece of code:

FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
        ft.replace(R.id.fragment_holder, new MusicAlbumList(), "albumlist");
        ft.commit();

How would I add the extras to the MusicAlbumList?

If that's not possible, how will I get the data that's currently being passed through extras into my new Fragment before it force closes due to missing essential data?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Change the constructor of MusicAlbumList from default constructor to one with arguments like new MusicAlbumList(int arg1, ...) and pass the values you want to set through the constructor

link|improve this answer
This was my first idea. Guessing I'll have to rewrite all classes to Fragments then (currently using FragmentActivities) – Sander van't Veer Dec 5 '11 at 10:21
I have been using the above mentioned way pretty successfully – frieza Dec 5 '11 at 10:23
Alright thanks, I'll give this a whirl. – Sander van't Veer Dec 5 '11 at 10:33
feedback

Your Answer

 
or
required, but never shown

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