3

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?

Jehof
  • 34,674
  • 10
  • 123
  • 155
Bobert
  • 226
  • 4
  • 16

1 Answers1

0

This is beacause ttitle is not enabled.

getActionBar().setDisplayShowTitleEnabled(false);

Change it to and then call setTitle()

getActionBar().setDisplayShowTitleEnabled(true);
setTitle("Your Title");
Quintin Balsdon
  • 5,484
  • 10
  • 54
  • 95
prince
  • 1,129
  • 1
  • 15
  • 38