MainActivity is my parent activity with 3 tabs named Tab A,B and C.Ii use intent to create a new child activity called "ChildActivity".
I have created a TabManager in the MainActivity which controls the connection to server. When Tab B is pressed, it will start the connection to my server and will return a result message in MainActivity after 30 second. If the ChildActivity is opened, i hope it would listen to that message and execute different functions from the connection result. In iOS environment, i would get it done through the AppDelegate function. I tried to use interface but eclipse returns error. I also tried putParceable and putSerializable but it fails again.
Is there any "AppDelegate" like functions in Android?