See if this helps.
In the event that the link dies, here is the main body of the post at that link. Note: I did not author anything below.
The built-in Preference class has a method to receive clicks, onClick, but no method to receive long clicks. In my current project, I actually have a need for this, and found a way to implement it.
PreferenceActivity is actually a ListActivity, with a special adapter behind the scenes. The usual (not long) clicks are processed by using the usual ListView mechanism, setOnItemClickListener. The code to set this up is in PreferenceScreen:
01 public final class PreferenceScreen extends PreferenceGroup implements AdapterView.OnItemClickListener.... {
02
03 public void bind(ListView listView) {
04 listView.setOnItemClickListener(this);
05 listView.setAdapter(getRootAdapter());
06
07 onAttachedToActivity();
08 }
09
10 public void onItemClick(AdapterView parent, View view, int position, long id) {
11 Object item = getRootAdapter().getItem(position);
12 if (!(item instanceof Preference)) return;
13
14 final Preference preference = (Preference) item;
15 preference.performClick(this);
16 }
17 }
It would be really easy to subclass PreferenceScreen and override bind to add a long-item-click listener to the list view, except this class is final. Because of this, I ended up adding the following code into my PreferenceActivity subclass:
01 public class BlahBlahActivity extends PreferenceActivity {
02 @Override
03 protected void onCreate(Bundle savedInstanceState) {
04
05 super.onCreate(savedInstanceState);
06
07 addPreferencesFromResource(R.xml.account_options_prefs);
08
09 ListView listView = getListView();
10 listView.setOnItemLongClickListener(new OnItemLongClickListener() {
11 @Override
12 public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
13 ListView listView = (ListView) parent;
14 ListAdapter listAdapter = listView.getAdapter();
15 Object obj = listAdapter.getItem(position);
16 if (obj != null && obj instanceof View.OnLongClickListener) {
17 View.OnLongClickListener longListener = (View.OnLongClickListener) obj;
18 return longListener.onLongClick(view);
19 }
20 return false;
21 }
22 });
23 }
24 }
Now I can have a Preference subclass that implements View.OnLongClickListener, which is automatically invoked for long clicks:
1 public class BlahBlahPreference extends CheckBoxPreference implements View.OnLongClickListener {
2
3 @Override
4 public boolean onLongClick(View v) {
5 // Do something for long click
6 return true;
7 }
8 }