- I'm using Actionbar.
- I have a Fragment call Favorites where i save some contacts as favorites.
- When you click on one contact it takes me to another fragment an put the contact number on a editText.
- The new fragment is call Transfers.
So my problem is that when the user clicks the contact, that takes me to the other fragment but the title on the action bar still with the favorite title and not the new one, how to change that title?
I have already try to use setTitle
on the click method but still not working.
In your activity:
And in your fragment (You can put it onCreate or onResume):
In your fragment