On what conditions getChildView() is called in ExpandableListAdapter

android, expandablelistadapter, expandablelistview, inflate, view

Solution

is called when you have more than 1 item in groups and in childs, i mean when getGroupCount returns a value greater than 0

Problem

In my app, `getChildView()` inside my ExpandableListAdapter isn't being called while the adapter returns the correct child count (when `getChildrenCount()` is called). My question is; what are the conditions that need to be met, in order to have ExpandableListAdapter inflate its children?

Original source