Tagged Questions

0
votes
1answer
24 views

Android - ExpandableListView change background for child items

I'm using ExpandableListView in my app and one of the complains I get from the users is that when the list item is expanded it's hard to visually distinguish where the child item ends and next group …
0
votes
1answer
85 views

Android - CheckBox blocks ExpandableListView.OnGroupClickListener

I'm trying to put a checkbox into ExpandableListView. How do I do that? I extend BaseExpandableListAdapter and put the following into getGroupView(): @Override public View getGroupView(int …
0
votes
1answer
186 views

Multiple Android expandable lists in a layout

I want to have more than one expandable list within a layout. It appears that an expandable list in a custom layout must have an id of "@id/android:list". So, how could I have more than one if they …
0
votes
1answer
424 views

In an ExpandableListView, how can I show one additional line at the end of the child results?

I have created a custom ExpandableListAdapter and everything works properly. What I'd like to be able to do is in each of the groups add a different type of child to the end. I have tried adding 1 to …