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; /* 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); } }