How to open the first group in ExpandableListView program?
expList = (ExpandableListView) findViewById(R.id.expList); expList.setGroupIndicator(null); expList.setAdapter(adapter); expList.expandGroup(0); in the end, does not reveal the first group when the application is launched, I use the custom adapter from this question