You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into a bad issue when I used your library to create an expandable listview with lazy-loaded imageViews as group views. It turned up that each time a group is opened, all the group view are redrawn but they are given a random convertView (and not theirs), which causes pretty bad blinkings as the previous imageViews are delivered randomely to the wrong groups. You can experience this issue in your own example by setting a delayed TextView update for your groups
in public View getGroupView (MainActivity ln 194)
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
holder.title.setText(item.title);
}
}, 1000);
Is it caused by your wrapper class, or is it an inherent issue of the ExpandableListView?
Thank you in advance,
The text was updated successfully, but these errors were encountered:
Hello,
I ran into a bad issue when I used your library to create an expandable listview with lazy-loaded imageViews as group views. It turned up that each time a group is opened, all the group view are redrawn but they are given a random convertView (and not theirs), which causes pretty bad blinkings as the previous imageViews are delivered randomely to the wrong groups. You can experience this issue in your own example by setting a delayed TextView update for your groups
in public View getGroupView (MainActivity ln 194)
Is it caused by your wrapper class, or is it an inherent issue of the ExpandableListView?
Thank you in advance,
The text was updated successfully, but these errors were encountered: