
Hi,
I have followed your project. But right now ALL my second level items show in each of the child views of the parent view.
I assume my issue is here
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final CustomExpListView secondLevelExpListView = new CustomExpListView(this.mContext);
String parentNode = (String) getGroup(groupPosition);
secondLevelExpListView.setAdapter(new SecondLevelAdapter(this.mContext, mListData_SecondLevel_Map.get(parentNode), mListData_ThirdLevel_Map));
secondLevelExpListView.setGroupIndicator(null);
return secondLevelExpListView;
}
Can you help me with this?
Hi,
I have followed your project. But right now ALL my second level items show in each of the child views of the parent view.
I assume my issue is here
Can you help me with this?