Skip to content

Instantly share code, notes, and snippets.

@madhu314
Created January 15, 2017 13:58
Show Gist options
  • Save madhu314/a27ec45e23741810742ee13b40fdc003 to your computer and use it in GitHub Desktop.
Save madhu314/a27ec45e23741810742ee13b40fdc003 to your computer and use it in GitHub Desktop.
@Override public void onBindViewHolder(ViewHolder holder, int position) {
Article article = articleDataset.getArticle(position);
holder.bindTo(article, this);
}
@Override public int getItemCount() {
return articleDataset == null ? 0 : articleDataset.size();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment