Android Open Source - AnotherExpandableListView Another Expandable List View






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;
/* w  w  w . j a  va  2 s.co  m*/
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ExpandableListView;

/**
 * Custom expandable ListView
 */
public class AnotherExpandableListView extends ExpandableListView {

    public AnotherExpandableListView(Context context) {
        super(context);
    }

    public AnotherExpandableListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public AnotherExpandableListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
}




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