Skip to content

Instantly share code, notes, and snippets.

@welbesw
Created May 31, 2016 14:16
Show Gist options
  • Save welbesw/09a4c9bb67811f40803a044cbb376b78 to your computer and use it in GitHub Desktop.
Save welbesw/09a4c9bb67811f40803a044cbb376b78 to your computer and use it in GitHub Desktop.
Item RecyclerView.ViewHolder
/**
* A simple view holder to be used for a list of items. To
* keep things simple, just one TextView will be used.
*/
public class ItemHolder extends RecyclerView.ViewHolder {
public TextView mTextView;
public ItemHolder(View itemView) {
super(itemView);
mTextView = (TextView) itemView;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment