问题
I'm developing an android app using design library and appCompat library. I'm facing some issues when tried to listen to long click on a menu item. My app has a NavigationView as a side menu, inside this navigationview I had a menu with a lot of items. I can listen to click of these items but I can't listen to the long click. Does anybody know how do I implement it?
Thanks.
回答1:
update
You can use:
Menu myMenu = navigationView.getMenu();
MenuItem myItem = myMenu.findItem(R.id.my_item);
myItem.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// do something
}
});
来源:https://stackoverflow.com/questions/32865956/how-to-listen-to-long-click-on-a-navigationview-item