In my app, I change the title in the ActionBar from each fragment displayed. When I first start my apps, I got a list of requests, so my title is \"My requests (20)\".
T
I guess this problem is solved by refreshing action bar UI.
So I had solved with below codes.
ActionBar actionBar = getActivity().getActionBar(); actionBar.setTitle(title); // for refreshing UI actionBar.setDisplayHomeAsUpEnabled(false); actionBar.setDisplayHomeAsUpEnabled(true);