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.

With Activities, I used to do this:

In Activity 1:

Intent i = new Intent(getApplicationContext(), MyFragmentActivity.class);
                i.putExtra("name", items.get(arg2));
                i.putExtra("category", Category);
                startActivity(i);

In Activity 2:

Item = getIntent().getExtras().getString("name");

How do you do this using Fragments? I am using the compatibility library v4 also.

Does it go int he FragmentActivity? Or the actual Fragment? And Which Method does it go in? onCreate? onCreateView? another?

And can I see example code please?

EDIT: It is worth noting I am trying to keep Activity 1 as an Activity (or actually ListActivity where I am passing the intent of the listitem when clicked) and then pass to a set of tabbed-fragments (through a Fragment Activity) and I need either tab to be able to get the extras. (I hope this is possible?)

share|improve this question

2 Answers

up vote 20 down vote accepted

What I tend to do, and I believe this is what Google intended for developers to do too, is to still get the extras from an Intent in an Activity and then pass any extra data to fragments by instantiating them with arguments.

There's actually an example on the Android dev blog that illustrates this concept, and you'll see this in several of the API demos too. Although this specific example is given for API 3.0+ fragments, the same flow applies when using FragmentActivity and Fragment from the support library.

You first retrieve the intent extras as usual in your activity and pass them on as arguments to the fragment:

public static class DetailsActivity extends FragmentActivity {

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

        // (omitted some other stuff)

        if (savedInstanceState == null) {
            // During initial setup, plug in the details fragment.
            DetailsFragment details = new DetailsFragment();
            details.setArguments(getIntent().getExtras());
            getSupportFragmentManager().beginTransaction().add(
                    android.R.id.content, details).commit();
        }
    }
}

In stead of directly invoking the constructor, it's probably easier to use a static method that plugs the arguments into the fragment for you. Such a method is often called newInstance in the examples given by Google. There actually is a newInstance method in DetailsFragment, so I'm unsure why it isn't used in the snippet above...

Anyways, all extras provided as argument upon creating the fragment, will be available by calling getArguments(). Since this returns a Bundle, its usage is similar to that of the extras in an Activity.

public static class DetailsFragment extends Fragment {
    /**
     * Create a new instance of DetailsFragment, initialized to
     * show the text at 'index'.
     */
    public static DetailsFragment newInstance(int index) {
        DetailsFragment f = new DetailsFragment();

        // Supply index input as an argument.
        Bundle args = new Bundle();
        args.putInt("index", index);
        f.setArguments(args);

        return f;
    }

    public int getShownIndex() {
        return getArguments().getInt("index", 0);
    }

    // (other stuff omitted)

}
share|improve this answer
Hey thanks, I will mark this as correct after I get to try this out but it looks good to me! In the meantime, if I want to take the value of the intent and set that text on a textView -- based on your answer, would it be like this? 'tv.setText(getShownIndex())' ? And I am actually grabbing TWO different extras --- in my case "names", and "categories" -- how does that change the code above? – KickingLettuce Jul 9 '12 at 14:23
Just add as many parameters to newInstance(...) as you need to pass on extras, and put each one into the arguments Bundle. Personally, I normally retrieve all the arguments within one of the fragment's onCreate...() methods and assign them to variables. That way you should be able to use them anywhere within the implementation. – MH. Jul 9 '12 at 19:20
On retrieving in the onCreate, what is the syntax? Normally I used 'Item = getIntent().getExtras().getString("name");' How does it change now? (I think this answers the last remaining question) – KickingLettuce Jul 9 '12 at 21:49
Similar to shown in the example: String item = getArguments().getString("name");. As usual, a default value can optionally added as second parameter. – MH. Jul 9 '12 at 21:53
1  
If the TextView is part to the fragment's UI, then the activity has little to do with that. The whole reason for passing on the intent extras as arguments to the fragment is so that you can use those inside the latter, right? I would recommend going over some of the documentation online and the API samples (which can be downloaded through the Android SDK Manager). – MH. Jul 10 '12 at 19:13
show 3 more comments

you can still use Item = getIntent().getExtras().getString("name"); in the fragment, you just need call getActivity() first:

Item = getActivity().getIntent().getExtras().getString("name");

This saves you having to write some code.

share|improve this answer
This saves a lot of code writing! good one :) – Royston Pinto Apr 29 at 18:49

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.