I am still fairly new to android, but I am getting there!
I have created an ExpandableListView almost identical to the api sample code on the android developers website. The ExpandableList works wonderfully.
I tried creating custom layouts through xml and a SimpleExpandableAdaptor and had nightmares. Which brings me to the point:
I have been reading a lot about LayoutInflaters and how well they work with XML files. However, I would like to create two seperate ImageButtons and place them next to the groupExpanded indicator (in the group TextView) with out referencing xml. I don't think I can use xml to do this simply because the code supplied by API doesn't rely on xml, its created runtime.
Can LayoutInflater work in this situation (no xml)? Does anyone have suggestions where I might look for a clean solution?
Thanks in advance.