Skip to content

Instantly share code, notes, and snippets.

@bperin
Created December 20, 2014 23:59
Show Gist options
  • Save bperin/b5cc598fc234398fb57e to your computer and use it in GitHub Desktop.
Save bperin/b5cc598fc234398fb57e to your computer and use it in GitHub Desktop.
generic view holder
public class MyViewHolder extends RecyclerView.ViewHolder{
private View view;
public MyViewHolder(View itemView) {
super(itemView);
this.view = itemView;
}
public View getView(){
return view;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment