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.

I am using PreferenceActivity, how can I set a custom title bar? Not only text but background color, size - the whole layout.

share|improve this question

5 Answers

up vote 5 down vote accepted

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:

protected void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.login_settings);
    setContentView(R.layout.login_settings_layout);
}

You would need a ListView in login_settings_layout.xml that looks something like:

<ListView 
    android:id="@+android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    /> 
share|improve this answer
public class Preferences extends PreferenceActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    super.onCreate(savedInstanceState);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title_bar);
}
}
share|improve this answer
I tried that but it didn't work. It doesn't change anything. – fhucho Feb 8 '11 at 11:38

Ben's method worked out well for me!!. Here is the code

public class PreferenceCustomTitleActivity extends PreferenceActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.preference);

    /** Customize your background, textsize, cachetint, dividers
        for your list view in the xml **/
    setContentView(R.layout.layout_with_simple_listview_only);

    ListView list = (ListView) findViewById(android.R.id.list);

    View preferenceHeader = getLayoutInflater().inflate(
            R.layout.preference_header, null);
    list.addHeaderView(preferenceHeader);
}

}

share|improve this answer

Awesome, worked fine for "NO_TITLE":

protected void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.login_settings);
    setContentView(R.layout.login_settings_layout);
}
share|improve this answer
2  
Can you please post login_settings_layout.xml? – fhucho May 4 '11 at 12:50

Or like this:

@Override
public void onCreate(Bundle savedInstanceState) {
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 
    super.onCreate(savedInstanceState);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.customtitlebar); 
    addPreferencesFromResource(R.xml.preferences);
}

With a customtitlebar.xml like this:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/customTitleBar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/CustomWindowTitle">
</TextView>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.