I have my MainActivity and a few fragments, and I want to change the Toolbar title depending on the Fragment displayed.
I have tried using getActivity().setTitle(R.string.buscar_futbolista); in onCreateView of the Fragment, but is not changing the title. Why?
In my MainActivity, in onCreate method I have the following:
Toolbar toolbar = findViewById(R.id.toolbar);
toolbar.setTitle(R.string.inicio);
setSupportActionBar(toolbar);
Thank you in advance!