|
@@ -356,13 +356,13 @@ public class RecordOverviewFragment extends Fragment implements ChecklistDialog.
|
|
mylist.setOnGroupExpandListener(new ExpandableListView.OnGroupExpandListener() {
|
|
mylist.setOnGroupExpandListener(new ExpandableListView.OnGroupExpandListener() {
|
|
@Override
|
|
@Override
|
|
public void onGroupExpand(int i) {
|
|
public void onGroupExpand(int i) {
|
|
- RecordOverviewFragment.this.openSections.add(i);
|
|
|
|
|
|
+ RecordOverviewFragment.this.openSections.add(new Integer(i));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
mylist.setOnGroupCollapseListener(new ExpandableListView.OnGroupCollapseListener() {
|
|
mylist.setOnGroupCollapseListener(new ExpandableListView.OnGroupCollapseListener() {
|
|
@Override
|
|
@Override
|
|
public void onGroupCollapse(int i) {
|
|
public void onGroupCollapse(int i) {
|
|
- RecordOverviewFragment.this.openSections.remove(i);
|
|
|
|
|
|
+ RecordOverviewFragment.this.openSections.remove(new Integer(i));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|