My question is similar to this one: ListView: disabling clicking/focus

However, I don't want to disable the default onClick, just the long click. I've registered my ListView for context menu creation, and I want to disable it for a header element (or at least change its behavior). How would I go about this?

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Figured it out! It wasn't obvious that the menuInfo was necessarily an AdapterContextMenuInfo (which has position).

@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
    super.onCreateContextMenu(menu, v, menuInfo);
    MenuInflater inflater = getMenuInflater();
    if (((AdapterContextMenuInfo)menuInfo).position == 1) {
        inflater.inflate(R.menu.foo1, menu);
        return;
    }
    inflater.inflate(R.menu.foo2, menu);
}
link|improve this answer
feedback

I haven't tried this but it may work.

ListView extends ViewGroup so when a ListView is 'long-clicked', the listener should be passed which child view is under the long-click.

Create your own ListView class which implements onLongClickListener then check to see if the View is either your Header or Footer and, if so, return 'true' to show the long-click has been 'consumed' and to indicate that no further action should be taken.

protected MyListView extends ListView
    implements onLongClickListener {

    public boolean onLongClick (View v) {
        boolean longClickConsumed = false;

        // Check if v is either your Header or Footer
        // if so then set longClickConsumed to be true

        return longClickConsumed;
    }
}
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.