Basically I want to show a different context menu when the user short clicks or long clicks on a cell in the grid view. The issue I have is that if the user short clicks the OnItemClick listener is called and I see the debugger reach the code that shows the context menu but rather than moving from there to onCreateContextMenu it goes to onItemLongClick.
I have tried using a Boolean to prevent the long click code being executed which does prevent that code being executed, however even when this is done onCreateContextMenu is not called at all.
If I remove the onItemLongClick listener the short click listener works correctly and the context menu is shown correctly.
I know other people have asked questions similar to this but I still haven't been able to find a solution that works. If anyone can solve this or point me in the right direction please let me know, thanks in advance. Bounty will be awarded to anyone who can even point me in the right direction.
This is a simplified version of the code for the listeners:
mTGrid.setOnItemClickListener(new OnItemClickListener() {
//this listener should show the context menu for a short click on the gridview.
@Override
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
mRequiredMenu = "standard";
parent.showContextMenuForChild(v);
}
});
mTGrid.setOnItemLongClickListener(new OnItemLongClickListener() {
//this listener should show the context menu for a long click on the gridview.
@Override
public boolean onItemLongClick(AdapterView<?> parent, View v, int position, long id) {
mRequiredMenu = "options";
parent.showContextMenuForChild(v);
}
});
For desperate situation desperate solutions.
1.Try to work with booleans, instead of executing code inside the listeners.
2 check if both of clickable and longclickable properties are "true" in your layout.
OnItemLongClickListener
gets triggered because showing the context menu for aListView
will attempt to do so through that listener. Here's the code fromAbsListView
:From this, we can see that if
mOnItemLongClickListener.onItemLongClick
returns true, then that signifies that the call was handled and the method exits. If it returns false, then it attempts to create the context menu.So you need to modify your return statement in
onItemLongClick
(which your code isn't showing) to return true if it was really long clicked, and false if it was just clicked:You can overide dispatch event listener which is resposible for long click handling
I understand you want to show different context menu for short clicks and long clicks on a GridView item.
First, you just need to set listener for short click since the default behavior will automatically show context menu on long clicks.
Next, set a boolean flag to true in the OnItemClickListener. The default value is false for long clicks.
Finally, in onCreateContextMenu() check if its a short click and show a different context menu (standard) and set flag to false. Else let it show the default context menu (options).
Here is some code to demonstrate the idea.
Sample Application: You can download a sample application to see the behavior. GridExample_eclipse_project