Using a simple EditTextPreference in my preferences activity:

<EditTextPreference
    android:key="SomeKey"
    android:title="@string/some_title"
    android:summary="..."
    android:numeric="integer"
    android:maxLength="2"
/>

Is there a way that this configuration value would be saved as integer? Seems now it just allows to enter numbers, but the value is still saved as string:

Calling:

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
int value = preferences.getInt("SomeKey", -1);

throws me java.lang.ClassCastException: java.lang.String, and:

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
String value = preferences.getString("SomeKey", "-1");

retrieves the value successfully.

How to make PreferenceActivity to save value as integer by default?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 12 down vote accepted

You could extend EditTextPreference:

public class IntEditTextPreference extends EditTextPreference {

    public IntEditTextPreference(Context context) {
        super(context);
    }

    public IntEditTextPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public IntEditTextPreference(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected String getPersistedString(String defaultReturnValue) {
        return String.valueOf(getPersistedInt(-1));
    }

    @Override
    protected boolean persistString(String value) {
        return persistInt(Integer.valueOf(value));
    }
}

It would be better to overwrite onSetInitialValue() and setText() methods, but then you would have to copy some code from a base class. Above solution is simplier, but it's quite tricky - "string" methods do something with ints. Try to not extend this class further ;-)

You could use it from XML by:

<package.name.IntEditTextPreference
    android:key="SomeKey"
    android:title="@string/some_title"
    android:summary="..."
    android:numeric="integer"
    android:maxLength="2"
/>

Tested, works :-)

link|improve this answer
Thanks! This works great! – Laimoncijus Sep 22 '10 at 19:42
@Brutall, I'd like to say thanks to you by improving the code. But someone said to me that the new code is... too long, and he rejected it. Oh, but what do people do if the old code is bad, and need to be replaced, but they don't do it because the new one is... long? Even if it is better. Oh my, that's GREAT! This is place for programmers? I have some open source projects, and I'm opening for any changes to my code. How shame to him! Anyway, thank you so much, Brutall. – hai bison Feb 15 at 6:01
Btw, all I do is: set input type to number; add a TextWatcher, to make sure the text user enters is not empty, and default value is 0. – hai bison Feb 15 at 6:04
feedback

Even if you set android:numeric="integer" it'll be text preference - as its name suggest. You could easily convert string value to int using Integer.valueOf(). Also you could overwrite PreferenceActivity to do conversion automatically on exit.


I think the best solution is to write simple method to get this value from preferences. Something like:

public static int getSomePref(Context context) {
    SharedPreferences prefs =
        PreferenceManager.getDefaultSharedPreferences(context);
    String value = prefs.getString("SomeKey", null);
    return value == null ? -1 : Integer.valueOf(value);
}

Then you could very easily use it from your code.

link|improve this answer
Where can I override this? By default PreferenceActivity does the saving automatically, should I override some method for getting the value or do all saving myself instead? – Laimoncijus Sep 16 '10 at 8:43
Ok, changing type of preference isn't good, cause you may get ClassCastException problems. I have updated my answer. – Brutall Sep 16 '10 at 10:37
Yes, I thought about wrapper myself, but somewhat I still don't like this solution... SharedPreferences has getInt method already, so still hoping somehow to find a way how to tell PreferenceActivity to save the value as int - all functionality is there... just doesn't work as whished... – Laimoncijus Sep 20 '10 at 18:45
You could always wrote your own Preference class. – Brutall Sep 20 '10 at 20:45
feedback

Your Answer

 
or
required, but never shown

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