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
I want to be able to turn autoUpdate and updateOnMofification on and off after the RealmRecyclerViewAdapter has alrady been created.
autoUpdate
updateOnMofification
Having that feature allows me to implement Drag & Drop.
For now I cloned the class changed it accordingly, but it would be nice to have it in the original class.
Be able to do something like this:
RealmRecyclerViewAdapter adapter = new RealmRecyclerViewAdapter(data, true, true); ... adapter.enableAutoUpdates(false, false); ... adapter.enableAutoUpdates(true, true);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Goal
I want to be able to turn
autoUpdate
andupdateOnMofification
on and off after the RealmRecyclerViewAdapter has alrady been created.Having that feature allows me to implement Drag & Drop.
For now I cloned the class changed it accordingly, but it would be nice to have it in the original class.
Expected Results
Be able to do something like this:
The text was updated successfully, but these errors were encountered: