Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created December 28, 2020 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magdamiu/0839d28fc44d2745670b4406610a3383 to your computer and use it in GitHub Desktop.
Save magdamiu/0839d28fc44d2745670b4406610a3383 to your computer and use it in GitHub Desktop.
Update the Adapter
// Clean all elements of the recycler
public void clear() {
emails.clear();
notifyDataSetChanged();
}
// Add a list of items
public void addAll(List<Email> list) {
emails.addAll(list);
notifyDataSetChanged();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment