Beispiel #1
0
 @Override
 protected Object getViewHolder(View v) {
   Holder h = new Holder();
   h.layout = (LinearLayout) v.findViewById(R.id.login_item);
   h.ivPic = (ImageView) v.findViewById(R.id.login_pic);
   h.ivLogo = v.findViewById(R.id.login_logo);
   h.tvName = (TextView) v.findViewById(R.id.login_token_name);
   h.btnDelete = v.findViewById(R.id.login_delete);
   return h;
 }