Back to project page AnotherExpandableListView.
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.
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; }