RecyclerTreeView icon indicating copy to clipboard operation
RecyclerTreeView copied to clipboard

How to update particular row (NotifyDataSetChange)

Open technicalhunt opened this issue 5 years ago • 1 comments

I want to update a row in data like NotifyDataSetChange,

Currently, I am updating the complete list of data and loading on to listview but when I update some rows, the list is lagging.

technicalhunt avatar Oct 23 '20 17:10 technicalhunt

如果该行是不可见的,无需处理。如果该行是可见的,只需迭代所有子视图获得改行视图,然后重新绑定。

If the row is invisible, no processing is required. Else if the row is visible, just iterate all the subviews and get the view object, and then rebind the view.

KnIfER avatar Nov 24 '20 05:11 KnIfER