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!

link|improve this question

59% accept rate
Really, I don't how to do that. I guess the function I should use is getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) but the thing is that I only have the groupPosition. I guess isExpanded should be set to true, but what about convertView and parent??? – thomaus Jan 10 at 13:00
feedback

2 Answers

I'm having the same issue. What I did, after finding absolutely nothing on the interwebs, relies on a custom adapter ;)

In my custom adapter I made a private List<View> mGroupViews and then did this:

public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
  // Do the usual stuff here
  mGroupViews.add(groupPosition, convertView);
  return convertView;
}

Then I made my own method:

public View getGroupView(int groupPosition) {
  return mGroupViews.get(groupPosition);
}

Now, in your activity, you can do this:

@Override
public void onGroupExpand(int groupPosition) {
  super.onGroupExpand(groupPosition);
  TextView viewWeNeed = (TextView) customAdapter.getGroupView(groupPosition).findViewById(R.id.viewWeNeed);
  viewWeNeed.setCompoundDrawablesWithIntrinsicBounds(getResources().getDrawable(R.drawable.arrow_down), null, null, null);
}

The problem I have now is that the image does not change (even though I'm sure the code is right). But when I debug through it, I can see I have the right view. So that's step 1..

EDIT: Seems that it does refresh the image, but it acts very strange, especially when I start tapping on multiple items..

link|improve this answer
feedback

What I eventually did is using the boolean isExpanded you get for free in getGroupView when you make a custom adapter. I was able to make things work the way I wanted with that, instead of doing it in the activity. If you save the context you get in the constructor, you can use that to get resources.

@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
  if (isExpanded) {
    mContext.getResources().getDrawable(R.drawable.arrow)
    doSomething();
  }
  else {
    doSomethingElse();
  }
}

That's a lot easier than my other answer (which was a bit buggy anyway), so forget about that one :)

link|improve this answer
Thanks. I already tried this solution some time ago and it is buggy + it doesn't make sense to change the group view in this class. It should be inside the onGroupExpand event. – thomaus Jan 24 at 15:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.