I have a TabHost with two child activities in it (in two tabs). I also implemented a public function in one of these activities that i would like to call from my parent (Tab
Thank you, this helped me to solve a simular problem!
Activity currentActivity = getLocalActivityManager().getActivity(_TabHost.getCurrentTabTag()); if(currentActivity != null && currentActivity instanceof iMyActivity) { // pass to children ((iMyActivity)currentActivity).onLaunchDelegate(); }