We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, is there something like RealmCollectionChange class from java in realm? If not, how to get information about the changes in a table or query?
That problem is that the cause notifyDataSetChange() or notifyItemRangeChanged(0, size()) bad for recyclerView.
notifyDataSetChange()
notifyItemRangeChanged(0, size())
The text was updated successfully, but these errors were encountered:
Not yet, unfortunately it's being tracked here: #989
Sorry, something went wrong.
No, not right now. One work-around could be to use realm.copyFromRealm() and DiffUtils ( https://developer.android.com/reference/android/support/v7/util/DiffUtil.html ), but it will only be feasible for smaller data sets.
realm.copyFromRealm()
No branches or pull requests
Hi, is there something like RealmCollectionChange class from java in realm?
If not, how to get information about the changes in a table or query?
That problem is that the cause
notifyDataSetChange()
ornotifyItemRangeChanged(0, size())
bad for recyclerView.The text was updated successfully, but these errors were encountered: