Top "Expandablelistadapter" questions

An adapter that links a ExpandableListView with the underlying data.

Expand ListView item with animation

I have a ListView. Initially, the ListView contains some data. When the user clicks on an item, another layout will …

android android-listview android-animation expandablelistview expandablelistadapter
android expandablelistview does not expand or receive click events

I can't for the life of me figure out why my ExpandableListView doesn't expand... I have used log statements in …

android click listener expandablelistview expandablelistadapter
Show only one child of expandable list at a time

Is it possible to only expand one child of an ExpandableListView at a time, thus opening a second child would …

android expandablelistview expandablelistadapter
SimpleCursorTreeAdapter and CursorLoader for ExpandableListView

I am trying to asynchronously query a provider by using a CursorLoader with a SimpleCursorTreeAdapter Here is my Fragment class …

android simplecursoradapter expandablelistadapter android-cursorloader
How to write custom ExpandableListAdapter

I'm looking to write my own ExpandableListAdapter which operates similarly to ArrayAdapter. My data model is this: public class Group { …

android expandablelistadapter
How to keep the ExpandableListView Opened?

I am working on the ExpandableListView I have completed the work, now only one thing that I want to do …

android click expandablelistview expandablelistadapter
How do I create an expandable list view in android from a List of Objects?

I have a list of objects in android. I want to iterate through the list and create an expandable list …

android list expandablelistview expandablelistadapter
Multi-layered ExpandableListView

I'm currently working on a project in which I need something like the following: - MainGroup 1 (Expandable) - SubGroup 1 (Expandable) …

android expandablelistview expandablelistadapter
How to check if group is expanded or collapsed in Android ExpandableListView?

I'm looking for an api like isExpanded() or isCollapsed() that tell me if a group is expanded or collapsed.

android expandablelistview collapse expand expandablelistadapter