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 solved this problem using a custom title as described in this post.
This is the code I use to change the title when a tab changes
((TextView) actionBar.getCustomView().findViewById(R.id.title)).setText(someTitle);
Note that this solution places the title to the right of the tabs in landscape mode when using actionbar tabs.