evant / binding-collection-adapter

Easy way to bind collections to listviews and recyclerviews with the new Android Data Binding framework
Apache License 2.0
1.92k stars 255 forks source link

在更新列表时,无法恒需 #204

Closed wangxiongtao closed 4 years ago

wangxiongtao commented 4 years ago

我想在更新列表的时候,比如加载更多,我想使用同一个List,每次加载更多只是更改这个list的长度,但是使用同一个就更新不了,查看代码,是因为在setItems方法中有了这个判断if (this.items == items) { return; } 所以我这里每次都是同一个list,所以retutn了,可以去掉这个判断么,或者用其他办法,我不想每次都new 一个LIst