I have a collection of data in ArrayList holding serializable model with following data types :-
- boolean isChecked
- String name
- String detail
I want to pass these datas from First Activity to Second Activity and edit the boolean state of isChecked
using listView adapter with adapter callback .when I come back to First Activity I want to update the data from Second Activity.
I am able to pass data and Update it in second Activity but not able to get updated data in First Activity. How is it possible to achieve my requirement,Any kind of help is much appreciated Thank you