ExpandableLists in Android, I want to allow only one parent list to expand at a time

后端 未结 8 1674
难免孤独
难免孤独 2021-02-04 17:15

I want to make only one item in the parent list expand at a time, my code for the onCreate is currently the following. (It works as I want, But the method to allow only one pare

8条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-04 17:30

        @Override
        public void onGroupExpanded(int groupPosition) {
            super.onGroupExpanded(groupPosition);
            int len = getGroupCount();
    
            for (int i = 0; i < len; i++) {
                if (i != groupPosition) {
                   expListView.collapseGroup(i);
                }
            }
        }
    

提交回复
热议问题