I have a ViewPager populated by Fragments. Especially, I have a Fragment that shows a list of Addresses objects and one that allows to create a new Address. The process to add a new Address is the following:
AddressListFragment --> CreateAddressFragment --> AddressListFragment
So when the new address is added, I come back to the AddressListFragment which is then the active one in the ViewPager. I need to update that fragment in order to update the list with the new added address when I come back on it ! Is there a specific method that I need to override on that fragment ?
Thanks in advance !