Back to project page DynamicGridView.
The source code is released under:
GNU General Public License
If you think the Android project DynamicGridView 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.authy.dynamicgridview; /* w w w . j av a 2 s .com*/ /** * Enum that stored supported scroll directions. */ public enum ScrollDirection { up(-1), down(1), none(0); private int direction; ScrollDirection(int direction){ this.direction = direction; } public int getDirection() { return direction; } }