views:

46

answers:

0

I have an ExpandableListActivity (for an RSS feed reader) which populates itself when the activity is created, that works fine. The groups are the item titles, and the children are a webview that contains the description.

I also pass a parameter to it in the hope that I can automatically expand on of the groups to display the RSS description, so for instance when the activity starts it automatically expands the third feed and you can see the children.

I'm using setSelectedChild(3, 0, true). This selects the correct group - but doesn't expand it.

Any ideas what I'm doing wrong?