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
|
feedback
|
|
You can implement OnSharedPreferenceChangeListener to be notified when a preference value change. In that method you can validate the value:
| |||||
feedback
|
|
I'd use The former allows you to validate the new value before it's persisted (and prevent it from being persisted) rather than after. | |||
|
feedback
|