Beispiel #1
0
 @Override
 public void onClick(View v) {
   mvg.removeView(v);
   String number = (String) v.getTag();
   for (ContactBean cb : selectContactList) {
     if (cb.getPhoneNum().equals(number)) {
       selectContactList.remove(cb);
       break;
     }
   }
   autoHeight(mvg.getChildAt(mvg.getChildCount() - 1));
 }