Se você estiver usando "import android.app.Fragment;" Então use:
1)
ExampleFragment fragment = (ExampleFragment) getFragmentManager().findFragmentById(R.id.example_fragment);
fragment.specific_function_name();
Onde R.id.example_fragment é provavelmente o ID FrameLayout dentro do seu layout xml. OU
2)
ExampleFragment fragment = (ExampleFragment) getFragmentManager().findFragmentByTag(“FragTagName”);
fragment.specific_function_name();
Onde FragTagName é o nome que você especificou quando fez:
TabHost mTabHost.newTabSpec(“FragTagName”)
Se você estiver usando "import android.support.v4.app.Fragment;" Então use:
1)
ExampleFragment fragment = (ExampleFragment) getSupportFragmentManager().findFragmentById(R.id.example_fragment);
fragment.specific_function_name();
OU
2)
ExampleFragment fragment = (ExampleFragment) getSupportFragmentManager().findFragmentByTag(“FragTagName”);
fragment.specific_function_name();