Created
October 2, 2015 18:36
-
-
Save xingrz/46e8d0782a8765246f0a to your computer and use it in GitHub Desktop.
RecyclerView.ViewHolder with Data Binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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