I have three activities - activity A ,activity B ,activity C . Activity A is the launcher activity . From this activity , I go to activity B .
The definition of activity B and activity C is as follows :
public class B extends C
public abstract class C extends BaseActivity
Now I want to do something in activity B after completion of some task in activity C . I have searched in the google and stackoverflow . This leads me to this answer.
But following the above answer the call of function stateChanged() takes a lot of time . Is there any faster way to do this ?