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 experience severe blinking after viewpager reloading inside of your SwipeFlingAdapterView.
I dug into lib and found out this specific line
View newUnderChild = this.mAdapter.getView(startingIndex, (View)null, this);
therefore getview method of my adapter is always initializing itself from scratch , making viewholder pattern impossible to use. And I have some operations like setting viewpager adapter in the viewholder constructor, which I assume makes it blink and lag a bit after each card is swiped.
Can you pls suggest something to fix this issue ?
The text was updated successfully, but these errors were encountered:
I experience severe blinking after viewpager reloading inside of your SwipeFlingAdapterView.
I dug into lib and found out this specific line
View newUnderChild = this.mAdapter.getView(startingIndex, (View)null, this);
therefore getview method of my adapter is always initializing itself from scratch , making viewholder pattern impossible to use. And I have some operations like setting viewpager adapter in the viewholder constructor, which I assume makes it blink and lag a bit after each card is swiped.
Can you pls suggest something to fix this issue ?
The text was updated successfully, but these errors were encountered: