I need to handle the selected row in listview on long click on the row but because am using menus I can't override the onclicklistener. I am trying to do this:

listView.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public boolean onLongClick(View v) {
        taskPosition = listView.getSelectedItemPosition();
        return true;
    }
});

but it doesn't work. Can anyone help me?

link|improve this question

Could you be more specific than "doesn't work"? – hammar May 8 '11 at 14:40
ok i got the value of listView.getSelectedItemPosition(); is equal -1 by debugger i need to handle the selection longclick on listview and use it in onContextItemSelected to perform action – Hassan Khwieh May 8 '11 at 14:50
feedback

1 Answer

up vote 2 down vote accepted

i got the value of listView.getSelectedItemPosition(); is equal -1

Of course. Rows typically are not selected. Rows are only selected if the user is using a pointing device (D-pad, trackball, etc.).

i need to handle the selection longclick on listview and use it in onContextItemSelected to perform action

No, you don't. You either use context menus or you use a long-click listener with a widget. You do not use both.

If you are trying to determine what row was long-clicked from onContextItemSelected(), here is a sample project that will demonstrate that for you, if your adapter is an ArrayAdapter. If you are using a CursorAdapter, here is a different sample project that will demonstrate this for you.

link|improve this answer
thanks for your answer , but i think am not clarify my question , so i have example to clarify it , in android 2.2 in call log if you make long click on list of calls number and got the pop of menus you see the menus handle the number that are selected from the list of call log , thats seems what i need is how to save selection of the listview and use it in menus – Hassan Khwieh May 9 '11 at 7:00
@Hassan Khwieh: You find out which row was long-clicked in onCreateContextMenu() from the supplied ContextMenu.ContextMenuInfo object. The mechanics are the same as in the examples I show, though I delay looking at this object until onContextItemSelected(). – CommonsWare May 9 '11 at 9:15
thats right many thanks – Hassan Khwieh May 9 '11 at 9:42
@CommonsWare How do you go about using a widget with a longClickListener. Sounds like this could be a solution to a question of mine. stackoverflow.com/questions/9844046/… – Deco Mar 23 at 17:51
feedback

Your Answer

 
or
required, but never shown

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