Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detecting which selected item (in a ListView) spawned the ContextMenu (Android)

I have a ListView that will allow the user to long-press an item to get a context menu. The problem I'm having is in determining which ListItem they long-pressed. I've tried doing this:

myListView.setOnCreateContextMenuListener(new OnCreateContextMenuListener() {   @Override public void onCreateContextMenu(ContextMenu menu, final View v, ContextMenuInfo menuInfo) {    menu.add("Make Toast")     .setOnMenuItemClickListener(new OnMenuItemClickListener() {      @Override public boolean onMenuItemClick(MenuItem item) {       String toastText = "You clicked position " + ((ListView)v).getSelectedItemPosition();       Toast.makeText(DisplayScheduleActivity.this, toastText, Toast.LENGTH_SHORT).show();       return true;      }     });   }   }); 

but it just hangs until an ANR pops up. I suspect that after the menu is created the ListItem is no longer selected.

It looks like you could monitor for clicks or long-clicks then record the clicked item there:

 mArrivalsList.setOnItemLongClickListener(new OnItemLongClickListener() {   @Override public boolean onItemLongClick(AdapterView<?> parent, View v, int position, long id) {    // record position/id/whatever here    return false;   }  }); 

but that feels majorly kludgey to me. Does anyone have any better solutions for this?

like image 484
Jeremy Logan Avatar asked Feb 23 '10 20:02

Jeremy Logan


Video Answer


2 Answers

I do exactly this. In my onCreateContextMenu(...) method, I cast the ContextMenu.ContextMenuInfo to AdapterView.AdapterContextMenuInfo. From there, you can get the targetView, which you cast again to the widget. The complete code is available in HomeActivity.java, look for the onCreateContextMenu(...) method.

@Override public void onCreateContextMenu(ContextMenu contextMenu,                                 View v,                                 ContextMenu.ContextMenuInfo menuInfo) {     AdapterView.AdapterContextMenuInfo info =             (AdapterView.AdapterContextMenuInfo) menuInfo;     selectedWord = ((TextView) info.targetView).getText().toString();     selectedWordId = info.id;      contextMenu.setHeaderTitle(selectedWord);     contextMenu.add(0, CONTEXT_MENU_EDIT_ITEM, 0, R.string.edit);     contextMenu.add(0, CONTEXT_MENU_DELETE_ITEM, 1, R.string.delete); } 

Note that I store the selected text as well as the select id in private fields. Since the UI is thread confined, I know the selectedWord and selectedWordId fields will be correct for later actions.

like image 58
Eric Burke Avatar answered Sep 28 '22 07:09

Eric Burke


First of all, I'm wondering if you're making things a little overly complicated by using View.setOnCreateContextMenuListener(). Things get a lot easier if you use Activity.registerForContextMenu(), because then you can just use Activity.onCreateContextMenu() and Activity.onContextItemSelected() to handle all of your menu events. It basically means you don't have to define all these anonymous inner classes to handle every event; you just need to override a few Activity methods to handle these context menu events.

Second, there's definitely easier ways to retrieve the currently selected item. All you need to do is keep a reference either to the ListView or to the Adapter used to populate it. You can use the ContextMenuInfo as an AdapterContextMenuInfo to get the position of the item; and then you can either use ListView.getItemAtPosition() or Adapter.getItem() to retrieve the Object specifically linked to what was clicked. For example, supposing I'm using Activity.onCreateContextMenu(), I could do this:

@Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {     super.onCreateContextMenu(menu, v, menuInfo);      // Get the info on which item was selected     AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;      // Get the Adapter behind your ListView (this assumes you're using     // a ListActivity; if you're not, you'll have to store the Adapter yourself     // in some way that can be accessed here.)     Adapter adapter = getListAdapter();      // Retrieve the item that was clicked on     Object item = adapter.getItem(info.position); }  @Override public boolean onContextItemSelected(MenuItem item) {     // Here's how you can get the correct item in onContextItemSelected()     AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();     Object item = getListAdapter().getItem(info.position); } 
like image 28
Dan Lew Avatar answered Sep 28 '22 09:09

Dan Lew