I am using PreferenceActivity, how can I set a custom title bar? Not only text but background color, size - the whole layout.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
PreferenceActivity extends ListActivity, and when you inflate the preferences from xml with addPreferencesFromResource(), it puts the stuff into the standard ListView that ListActivity uses. So basically, you can use setContentView() to specify a layout, but you need to have a ListView in it with the id "@+android:id/list". So using kleini's example code:
You would need a ListView in login_settings_layout.xml that looks something like:
|
|||
|
|
|
|||
|
|
|
Ben's method worked out well for me!!. Here is the code
} |
|||
|
|
|
Awesome, worked fine for "NO_TITLE":
|
|||||
|
|
Or like this:
With a customtitlebar.xml like this:
|
|||
|
|