How to add image in expandable List in parent in android?
Working with SimpleExpandableListAdapter is anything but simple. Here’s some code that should get you started, assuming that you’re using ExpandableListActivity. In this example, we use the standard android.R.layout.simple_expandable_list_item_1 for our group header view, but we use our own custom layout for the children. // Construct Expandable List final String NAME = “name”; final String IMAGE … Read more