I have 3 Activities A B C ::--
I call API for departments list in activity A and each departments has multiple managers with managers details like name , mobile , emails etc.
Activity A (contains department list) Activity B (contains Manager list for particular department) Activity C (contains One manager personal details like name , mobile ,email) etc.
Activity A starts activity B Pressing Back on activity B should lead to A Activity B starts activity C Pressing Back on activity C should lead to B
In Activity A I get data form API for List View ( Department List). I pass this data in activity B though intent on list view item click (click of department Cell which contains multiple manager list) and now I have list view for managers list and now on click of manager list item I pass data of that particular manager details in Activity C though intent now I call API for updating manager details after successful response of API I want to refresh activity B to refresh manager list how can I do this