I am in a peculiar situtation in my app.
When i app first loads there is a custom listview
which is populated with data from the server.I am also using a class which contains different fields for the string data from the server.
When i click an item on the custom listview
,the object of the corresponding class is passed onto the next fragment.
That is the current fragment
is replaced with a new fragment
and the object is passed with bundle
.
Now a new listview
loads with different tasks.On clicking a task a new fragment
with a camera is loaded.
After taking the image and uploading to server, the status in the JSON
changes to "COMPLETED".But now when i press back the old listview
is shown.
Is there a way to populate the listview
on back pressed with new data?
The issue is that I am passing an object right from the first fragment.
Now i need a new object on back pressed,how to pass the new object on back pressed?