在我的应用程序中有一个ListView。长按项目时,将出现“上下文菜单”。我想检查数据ID,然后设置禁用/启用我的上下文菜单“项目”。我找不到像getMenuInfo()这样的函数。
@Override
public void onCreateContextMenu(ContextMenu menu , View v, ContextMenuInfo menuInfo)
{
super.onCreateContextMenu(menu, v, menuInfo);
menu.add(0, ADD_FAVORITE_ID, 0, "Check");
menu.add(0, ADD_FAVORITE_ID, 0, "UnCheck").setEnabled(false);
}
答案 0 :(得分:4)
AdapterView.AdapterContextMenuInfo info=(AdapterView.AdapterContextMenuInfo)menuInfo();
然后,info.id
是ListView中长按的任何项目的_ID
。