I have an ExpandableListView bound to a SQLite database. To simplify things, lets assume the database contains two columns: title
and body
. In the ExpandableListView, there is a group
for each title
, and a child
for each corresponding body
.
Now to make things more interesting, some of the rows in the SQLite database do not have a body
(that is... they only have a title
). As you can see, if there is no body, then there is no reason to expand the group... because the child will be empty (i.e. String body == ""
).
I'm searching for a way to catch a situation like this, and skip the group's expansion. I don't want a blank child to be expanded. To put it in psuedo code, I want something like this:
if (body.getText() == "") {
//DO NOT EXPAND
//DO OTHER STUFF
}
Any suggestions?