You can use onRestart()
on the activity, making it call whatever method you want on the fragment by making use of getFragmentManager().findFragmentById(R.id.your_fragment)
.
When a fragment gets restarted its underlying activity got restarted so its onRestart()
method was called.