I have some problems passing data from an activity to fragments in it. I searched around but didn't find an answer which suit my situation well.
I have 2 fragment class named CurrentFragment.java
and HistoryFragment.java
. I initialize them as tabs in an Activity.
Tab tab = actionBar.newTab()
.setText(R.string.tab_current)
.setTabListener(new TaskitTabListener<CurrentFragment>(
this, "current", CurrentFragment.class));
actionBar.addTab(tab);
tab = actionBar.newTab()
.setText(R.string.tab_history)
.setTabListener(new TaskitTabListener<HistoryFragment>(
this, "history", HistoryFragment.class));
actionBar.addTab(tab);
I was told to use setArguments
in the Activity and getArguments
in the fragments. But in this situation how do I get fragment objects in the Activity? I can't use getFragmentManager().findFragmentById()
since the fragments are added programmatically.
Also, I find some posts saying that I may use getActivity()
in fragments to access data in the Activity container, but for me it keep returning null. Does anyone has a working example of that?
[EDIT] I've updated my answer to better respond to your question.
You can also retrieve fragments by tag with
getFragmentManager().findFragmentByTag("tag")
. Be careful though, if the tab has not been viewed yet the fragment will not exist.If you want the fragment to pull the data from the activity have your activity implement an Interface defined by the fragment. In the
onAttach(Activity activity)
lifecycle function for fragments you get access to the activity that created the fragment so you can cast that activity as the Interface you defined and make function calls. To do that put the interface in your fragment like this (You can also make the interface its own file if you want to share the same interface among many fragments):Then implement the the interface in your activity like this:
Finally in your
onAttach(Activity activity)
method in CurrentFragment cast the activity you receive as the interface you created so you can call those functions.