Check the event handler method for the menu. I found that I use
public boolean onOptionsItemSelected(MenuItem item)
I switched to the following and fixed the problem.
public boolean onMenuItemSelected(int featureId, MenuItem item)
I received the same warning and my event did not start the next event. Look at your method and see if it indicates that you are redefining it. I was not. As soon as I changed the method, I redefined and worked.
source share