设置ExpandableListView 默认是展开的

先实例化 exListView

然后

   exListView.setAdapter(exlvAdapter);

   //将所有项设置成默认展开

   int groupCount = exListView.getCount();

   for (int i=0; i<groupCount; i++) {

       exListView.expandGroup(i);

       };--->即可哦!

你可能感兴趣的:(设置ExpandableListView 默认是展开的)