-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExpandableLinearLayout & ExpandableRelativeLayout height issue when recycling item in RecyclerView #71
Comments
I am also having the same problem. the TextView inside cannot be seen 100% |
i'm having the same problem too. any good idea? |
I'm sorry for the delay fixed this issue. You have to set holder.expandableLayout.setInRecyclerView(true); and holder.setIsRecyclable(false); if it's used in recycler view. |
According to #87, I set holder.expandableLayout.setInRecyclerView(true); in my recycler view adapter but the ExpandableLinearLayout cannot wrap the contents fully when expand. How can I fix please? |
How come this is not implemented in |
When scrolling a list with a lot of elements I expand one ExpandableLinearLayout then scroll again to another element where ExpandableLinearLayout is supposed to expand even more, but sadly it's reusing the same view and does not expand fully.
How can I force a new height calculation?
The text was updated successfully, but these errors were encountered: