Back to project page SideNavigation.
The source code is released under:
Apache License
If you think the Android project SideNavigation 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.devspark.sidenavigation; /*from ww w . j a v a 2 s. c om*/ /** * Callback interface for {@link SideNavigationView}. * * @author e.shishkin * */ public interface ISideNavigationCallback { /** * Validation clicking on side navigation item. * * @param itemId id of selected item */ public void onSideNavigationItemClick(int itemId); }