Guest User

Untitled

a guest
Dec 20th, 2016
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.62 KB | None | 0 0
  1. public class UsersViewHolder extends RecyclerView.ViewHolder {
  2.  
  3.     public LinearLayout llMain; //root layout
  4.     public RelativeLayout rlUser;
  5.     public TextView tvUserEmail;
  6.     public ImageView ivCheck;
  7.  
  8.     public UsersViewHolder(View itemView) {
  9.         super(itemView);
  10.         itemView.setVisibility(View.GONE);
  11.         llMain = (LinearLayout) itemView.findViewById(R.id.ll_main);
  12.         rlUser = (RelativeLayout) itemView.findViewById(R.id.rl_user);
  13.         tvUserEmail = (TextView) itemView.findViewById(R.id.tv_user_email);
  14.         ivCheck = (ImageView) itemView.findViewById(R.id.iv_check);
  15.     }
  16.  
  17.  
  18. }
Add Comment
Please, Sign In to add comment