Skip to content

Instantly share code, notes, and snippets.

@xingrz
Created October 2, 2015 18:36
Show Gist options
  • Save xingrz/46e8d0782a8765246f0a to your computer and use it in GitHub Desktop.
Save xingrz/46e8d0782a8765246f0a to your computer and use it in GitHub Desktop.
RecyclerView.ViewHolder with Data Binding
public class RecyclerViewBindingHolder<V extends ViewDataBinding> extends RecyclerView.ViewHolder {
public final V binding;
public RecyclerViewBindingHolder(V binding) {
super(binding.getRoot());
this.binding = binding;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment