Back to project page CDMenu.
The source code is released under:
MIT License
If you think the Android project CDMenu listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.bekitzur.cdmenu; /*from w w w. j a va 2s . c om*/ import android.view.MenuItem; /** * Sends callback when a {@link com.bekitzur.cdmenu.CDMenu}'s item is clicked */ public interface OnCDMenuItemClickListener { /** * Sends a callback when a list item is clicked * @param menuItem the item that has been clicked */ void onCDMenuItemClicked(MenuItem menuItem); }