Android examples for android.widget:ListView
ExpandableListView collapse All
import android.widget.ExpandableListView; public class Main { public static void collapseAll(ExpandableListView expandableListView) { int groupCount = expandableListView.getAdapter().getCount(); for (int i = 0; i < groupCount; i++) { expandableListView.collapseGroup(i); }/*from w w w. j a v a2 s .c o m*/ } }