Reputation: 1
How to pass string data between fragments like we did in Activity using intents?Plea
Upvotes: 0
Views: 5304
Reputation: 18794
Use setArguments(...)
and getArguments(...)
if you are loading one fragment from another
Upvotes: 7
Reputation: 148
Use interfaces demonstrated here http://developer.android.com/guide/topics/fundamentals/fragments.html#CommunicatingWithActivity
Upvotes: 1