Package com.skydoves.powermenu
Interface OnMenuItemClickListener
-
- All Implemented Interfaces:
public interface OnMenuItemClickListener<T>OnMenuItemClickListener is for listening to the item click of the popup menu.
-
-
Method Summary
Modifier and Type Method Description abstract voidonItemClick(int position, T item)invoked when the popup menu item would be clicked. -
-
Method Detail
-
onItemClick
abstract void onItemClick(int position, T item)
invoked when the popup menu item would be clicked.
- Parameters:
position- the position of the item.item- the clicked item.
-
-
-
-