I'm using an ExpandableListView and I'm unsuccessfully trying to move an image when expanding a group (the image being part of the group view).
Here is my code :
my_list_view.setOnGroupExpandListener(new OnGroupExpandListener()
{
@Override
public void onGroupExpand(int groupPosition)
{
Toast.makeText(getBaseContext(), "Group " + my_list_view.getGroupId(groupPosition), Toast.LENGTH_SHORT).show();
}
});
Basically my problem is : how can I access the expanded Group view, when the only variable I can use is groupPosition?
Any you-should-create-a-custom-adapter-like response won't be accepted. I already tried that and it doesn't work for my issue. What I need is to listen the onGroupExpand event.
Thanks in advance!
getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)but the thing is that I only have thegroupPosition. I guessisExpandedshould be set to true, but what aboutconvertViewandparent??? – thomaus Jan 10 at 13:00