Android Open Source - AnotherExpandableListView Resources






From Project

Back to project page AnotherExpandableListView.

License

The source code is released under:

GNU General Public License

If you think the Android project AnotherExpandableListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package es.laux;
//from   w ww .  j a va2  s  . c  o m
/**
 * Resources categorized by color and style
 */
public class Resources {

    // Arrow style constants
    public final static int ARROW_THIN = 1;
    public final static int ARROW_BOLD = 2;
    public final static int DEFAULT_ARROW = ARROW_THIN;

    // Id of resource
    public final static int RES_ARROW_CLOSE_THIN = R.drawable.ic_close_thin;
    public final static int RES_ARROW_OPEN_THIN = R.drawable.ic_open_thin;
    public final static int RES_ARROW_CLOSE_BOLD = R.drawable.ic_close_bold;
    public final static int RES_ARROW_OPEN_BOLD = R.drawable.ic_open_bold;

}




Java Source Code List

es.laux.AnotherExpandableAdapter.java
es.laux.AnotherExpandableListView.java
es.laux.Resources.java
es.laux.models.AnotherExpandableChild.java
es.laux.models.AnotherExpandableGroup.java