Android Open Source - ExpendableListView Group






From Project

Back to project page ExpendableListView.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.example.listview.expendable.Group.java
com.example.listview.expendable.MainActivity.java
com.example.listview.expendable.MyExpandableListAdapter.java