I have 3 Fragments A, B & C.
A contains a grid of items, B fragment has a form to add data. All data moves to/from the server.
C fragment is a preference Fragment.
When the activity starts A fragment's onCreateView method is called where I fetch the latest data from server and inflate into my grid.
When I swipe to B fragment and add some new data. After I swipe back to A fragment grid doesn't get updated. I tried to call my update method in onResume method of Fragment A. But no help.
But When I swipe to C fragment and swipe back to B fragment the list gets updated.