Created
October 16, 2017 08:51
-
-
Save nutchy/36d254b703ee7a27acccae9eb55683e2 to your computer and use it in GitHub Desktop.
[MyLazyInstagram] - LazyInstagramAdapter.java - 1
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 LazyInstagramAdapter { | |
public class PostsViewHolder extends RecyclerView.ViewHolder { | |
RecyclerView recyclerView; | |
public PostsViewHolder(View itemView) { | |
super(itemView); | |
recyclerView = (RecyclerView) itemView.findViewById(R.id.rc_post); | |
} | |
public RecyclerView getRecyclerView() { | |
return recyclerView; | |
} | |
} | |
public class UserDetailViewHolder extends RecyclerView.ViewHolder { | |
RecyclerView recyclerView; | |
public UserDetailViewHolder(View itemView) { | |
super(itemView); | |
recyclerView = (RecyclerView) itemView.findViewById(R.id.rc_user); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment