Created
October 16, 2017 13:57
-
-
Save nutchy/99ab34f53998d046b80a6751353b3742 to your computer and use it in GitHub Desktop.
[MyLazyInstagram] - PostItemHolder.java
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 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