I\'ve got and ExpandableList
which I assign to an extended BaseExpandableListAdapter
. In here, I implement the getChildView
method to
As I mentioned in your other question, the ListView
calls getView()
to get the dimensions (width and height) of some items first, then calls the getView()
again to actually render the items. Check this video out, it's "required reading" for Android. The bit that deals with your question is at minute 41:30.