I am using an ExpandableListView. It works fine, but I want to add an OnGroupExpandListener; The problem is if I override it, the 'basic' default behaviour for that is overridden as well. I basically want something like this:
mTeamListAdapter = new TeamListAdapter(getLayoutInflater());
mTeamList = (ExpandableListView) findViewById(R.id.screen_team_teamslist);
mTeamList.setAdapter(mTeamListAdapter);
mTeamList.setGroupIndicator(null);
mTeamList.setOnGroupExpandListener(new OnGroupExpandListener() {
@Override
public void onGroupExpand(int groupPosition) {
// do my stuff..
// something like "super();" to enable the other default behaviour
}
});
Specifically, I want to make a Button visible (and clickable - it is "android:visibility="gone" before) on each group in the ExpandableListView. I still want each group, and its children, to be clickable as well!
How do I do this?
EDIT: By "basic default behaviour", I mean that if I override that method (OnGroupExpand) it seems I cannot expand/collapse the groups anymore!
OnGroupExpandListener!! Weird. Anyway, try tosetGroupIndicatorusing a non-null value? – Sherif elKhatib Oct 12 '11 at 11:22