Back to project page ExpendableListView.
The source code is released under:
Apache License
If you think the Android project ExpendableListView 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.example.listview.expendable; //from w w w . j a va2s.c o m import java.util.ArrayList; import java.util.List; public class Group { public String string; public final List<String> children = new ArrayList<String>(); public Group(String string) { this.string = string; } }