I have a typical menu and I'm wanting to set a onLongClickListener for one of the items. In other words, I want this item to perform it's normal onOptionsItemSelected function, as well as, a long press function.

    MenuItem item;
    item = menu.findItem(android.R.id.home);

item.setOnLongClickListener(new OnLongClickListener() {
        public boolean onLongClick(View v) {
            Context context = getApplicationContext();
            CharSequence text = "Long Press";
            int duration = Toast.LENGTH_SHORT;

            Toast toast = Toast.makeText(context, text, duration);
            toast.show();
            return true;
        }

    });
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Use the findItem method on Menu to get your views, and set your long click listener on each view.

link|improve this answer
I updated my OP a little. Is that what you're suggesting? – aneal Oct 3 '11 at 23:15
no, there is a method on the Menu object called findItem. Use that to get a View, and set the long click listener on the View. – Christopher Perry Oct 3 '11 at 23:27
I get the same error. That OnLongClickListener is undefined in MenuItem. Can you offer anymore help? – aneal Oct 3 '11 at 23:50
Sorry, you need a handle to the View. Try getActionView() on the menu item. – Christopher Perry Oct 3 '11 at 23:59
I still haven't quite got the hang of it, but thanks for helping me. – aneal Oct 4 '11 at 9:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.