欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

expandablelistview同时展开一个group

程序员文章站 2022-06-03 13:01:56
...

ExAdapter adapter;

ExpandableListView exList;

 

。。。。。。。。。。。。。。

adapter=new ExAdapter(DiseaseDetail.this);
        exList = (ExpandableListView) findViewById(R.id.list2);
        exList.setAdapter(adapter);
        exList.setGroupIndicator(null);
        exList.setDivider(null);
        exList.setOnGroupExpandListener(new OnGroupExpandListener(){

            @Override
            public void onGroupExpand(int arg0) {
                    // TODO Auto-generated method stub
                    for(int i=0;i<adapter.getGroupCount();i++)
                    {
                            if(arg0!=i)
                            {
                                exList.collapseGroup(i);
                            }
                    }
                                          
            }
                          
              });