Skip to content

Instantly share code, notes, and snippets.

@nutchy
Created October 16, 2017 13:57
Show Gist options
  • Save nutchy/99ab34f53998d046b80a6751353b3742 to your computer and use it in GitHub Desktop.
Save nutchy/99ab34f53998d046b80a6751353b3742 to your computer and use it in GitHub Desktop.
[MyLazyInstagram] - PostItemHolder.java
public class PostItemHolder extends RecyclerView.ViewHolder {
public ImageView imageView;
public TextView like;
public TextView comment;
public PostItemHolder(View itemView) {
super(itemView);
imageView = (ImageView) itemView.findViewById(R.id.imageView);
like = (TextView) itemView.findViewById(R.id.tvLike);
comment = (TextView) itemView.findViewById(R.id.tvComment);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment