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
Hey @Redth, we swapped out one of our ListViews in our production application to solve some pretty significant scrolling issues we were having on android (this is a pretty fantastic list control) with this control and are getting a relatively significant crash rate on android.
The root of the problem appears to be the RvViewContainer is trying to add a view as a child when it already has a parent (stack trace below). My initial though is to not add the Native view to the container unless the parent is null. however, following the code paths I am unsure how this view already has a parent this point, I am also unsure of what sort of side effects this will introduce. I was wondering if you have any ideas why this crash is happening and any insight into if the solution below should safely solve it without side effects? I am able to iterate on a couple of solutions in our production app before hardening and committing back.
Hey @Redth, we swapped out one of our ListViews in our production application to solve some pretty significant scrolling issues we were having on android (this is a pretty fantastic list control) with this control and are getting a relatively significant crash rate on android.
The root of the problem appears to be the
RvViewContainer
is trying to add a view as a child when it already has a parent (stack trace below). My initial though is to not add the Native view to the container unless the parent is null. however, following the code paths I am unsure how this view already has a parent this point, I am also unsure of what sort of side effects this will introduce. I was wondering if you have any ideas why this crash is happening and any insight into if the solution below should safely solve it without side effects? I am able to iterate on a couple of solutions in our production app before hardening and committing back.RvViewContainer.SetUpView
Existing:
Proposed
or probably event better
Stack trace:
The text was updated successfully, but these errors were encountered: