Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My problem is that when I start application and user didn't open my PreferenceActivity so when I retrieve them don't get any default values defined in my preference.xml file.

preference.xml file:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    android:key="applicationPreference" android:title="@string/config"
    >
    <ListPreference
            android:key="pref1"
            android:defaultValue="default"
            android:title="Title"
            android:summary="Summary"
            android:entries="@array/entry_names"
            android:entryValues="@array/entry_values"
            android:dialogTitle="@string/dialog_title"
    />                  
</PreferenceScreen>

Snippet from my main Activity (onCreate method):

    SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(this);        
    String pref1 = appPreferences.getString("pref1", null);

In result I end up with a null value.

share|improve this question

3 Answers

up vote 54 down vote accepted

In onCreate() of your main Activity just call the PreferenceManager.setDefaultValues() method.

PreferenceManager.setDefaultValues(this, R.xml.preference, false);

This will read your preference.xml file and set the default values defined there. Setting the readAgain argument to false means this will only set the default values if this method has never been called in the past so you don't need to worry about overriding the user's settings each time your Activity is created.

share|improve this answer
1  
but anyone have the sample or template for this perference.xml for reference? – XC. Apr 6 '11 at 6:26
Right on target. Thanks. +1. – ef2011 May 9 '11 at 2:02
3  
You saved my day! Been looking for 3 hours at the null value, at 3 'o clock at night in an airport wit tethering wifi. Thanks! – Cimm May 27 '11 at 2:56
@Dave Webb This does not work for string preferences. – Anderson Nov 29 '12 at 15:19

I'll be brief. :)

strings.xml (actually I have prefs.xml exclusively for preferences):

<string name="pref_mypref_key">mypref</string>
<string name="pref_mypref_default">blah</string>

preferences.xml:

android:key="@string/pref_mypref_key"
android:defaultValue="@string/pref_mypref_default"

MyActivity.java:

String myprefVal = prefs.getString(getString(R.string.pref_mypref_key), getString(R.string.pref_mypref_default));
share|improve this answer
Thanks, this actually is answer to my another question about where to store preference keys :) If I'll be able to combine it with best answer to this question it will be great! – pixel May 20 '10 at 19:04
2  
Apparently, in this example, this line would appear in MyActivity.java before the assignment of myprefVal: SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); – hotshot309 Dec 30 '11 at 17:01

Your call to getString() has null as the second parameter. Change that to be the default value you want.

share|improve this answer
3  
This is a very elegant solution. +1. However, to achieve what the OP wanted, the PreferenceManager.setDefaultValues() is the solution. – ef2011 May 9 '11 at 1:58

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.