thorbenprimke / realm-recyclerview

A RecyclerView that is powered by Realm and lots more
555 stars 151 forks source link

Is it possible to animate RealmRecycleView when i change sort directional? #100

Closed RashidMalikov closed 5 years ago

RashidMalikov commented 7 years ago

if (!searchText.isEmpty()) { realmResults = realmResults.where().contains("name", searchText).findAllSorted(sortName); } else { realmResults = realmResults.where().findAllSorted(sortName); } //notifyDataSetChanged(); updateRealmResults(realmResults);

sortName is may be different. updateRealmResults(realmResults) is not animate RealmRecycleView when i change sortName. Is there a way to animate this.

Thanks!