Categories
Uncategorized

Preference element in xml and the click event

If you have an EditTextPreference tag in a xml file you can catch the click event implementing OnSharedPreferenceChangeListener but it doesn’t work if you have a Preference tag in the xml file.

Consider the following code inside a xml file for the preferences:

<Preference
	android:key="my_key"
	android:summary="my_summary"
 	android:title="my_title" >
</Preference>