Good morning, I'm developing an Android project and I'm having a problem I'll try to explain clearly:
I have two Activity A and B, my Activity A calls B and stays in the stack, after closing the actions on B this ends and returns to A (returns because A was in the stack). This Activity B changes data on the server that changes the display in A, so I need to update it to display those changes when I finish B. Is there any way to do this update or reload Activity A as soon as B is completed?
Detail: Before Activity A there are others in the stack.