Does anyone have sample code to validate user entered text in preferences? For example, I have a EditTextPreference for user to enter an email address. I'd like to validate the format of email address entered and pop up an alert dialog if the format isn't correct. Anyone have any sample code for this? Thanks

link|improve this question

18% accept rate
feedback

2 Answers

You can implement OnSharedPreferenceChangeListener to be notified when a preference value change. In that method you can validate the value:

public class Preferences extends PreferenceActivity implements OnSharedPreferenceChangeListener {

  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.preferences);
    SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
    sp.registerOnSharedPreferenceChangeListener(this);
  }

  @Override
  public void onSharedPreferenceChanged(SharedPreferences sp, String key) {
    if (key.equals("mail_preference_key")) {
        // Search for a valid mail pattern
        String pattern = "mailpattern";
        String value = sp.getString(key, null);
        if (!Pattern.matches(pattern, value)) {
            // The value is not a valid email address.
            // Do anything like advice the user or change the value
        }
    }        
  }
}
link|improve this answer
I have the following code: if(key.equals("update_delay")) { String newvalue = sp.getString(key, null); if(Integer.parseInt(newvalue) < 60) sp.edit().putString("update_delay", "60").commit(); } and the next time I click on the EditTextPreference it still shows the low value. Do you know if commit() doesn't work in this context? – sargas Dec 29 '10 at 22:11
I'm not sure, but in commit method reference says 1. Note that when two editors are modifying preferences at the same time, the last one to call commit wins. 2. Returns true if the new values were successfully written to persistent storage. Point 1: Maybe the user editor make the last call. Point 2: Check if commit return true. Hope this help. – Fede Jan 4 '11 at 12:20
feedback

I'd use Preference.OnPreferenceChangeListener rather than SharedPreferences.OnSharedPreferenceChangeListener.

The former allows you to validate the new value before it's persisted (and prevent it from being persisted) rather than after.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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