I use PreferenceActivity
as well as in this example for Tablets Android from 4.0
But it does not display the title in the header, how can these ads?
I use PreferenceActivity
as well as in this example for Tablets Android from 4.0
But it does not display the title in the header, how can these ads?
This is beacause ttitle is not enabled.
getActionBar().setDisplayShowTitleEnabled(false);
Change it to and then call setTitle()
getActionBar().setDisplayShowTitleEnabled(true);
setTitle("Your Title");