Ejemplo: eliminar elemento del adaptador Android RecyclerView
private void removeItem(int position) {
int newPosition = holder.getAdapterPosition();
model.remove(newPosition);
notifyItemRemoved(newPosition);
notifyItemRangeChanged(newPosition, model.size());
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)