Skip to content

Instantly share code, notes, and snippets.

Created January 26, 2018 18:28
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 anonymous/ef14cbea28e5b58a20ab75b85507fd3f to your computer and use it in GitHub Desktop.
Save anonymous/ef14cbea28e5b58a20ab75b85507fd3f to your computer and use it in GitHub Desktop.
public void add(T item){
mItems.add(item);
notifyItemInserted(getItemCount() - 1);
}
public void addAll(List<T> items){
for (T item : items){
add(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment