Search code examples
androidpreferences

React on long tap in the Preferences?


I am creating a Custom Preference. Is there any way to react not just on click, but on long tap/click as well? So, if user clicks on the preference, then one event happens (dialog to choose the value opens), if long tap - another.


Solution

  • You can't add a LongClickListener on a preference itself but you can add it to the backing ListView of the PreferenceActivity and get the same behavior. See this tutorial.