| | |
| | | TextView statusTv = (TextView) mLayout.findViewById(R.id.item_user_status); |
| | | //statusTv.setText(""); |
| | | |
| | | |
| | | Object data = this.getItem(posistion); |
| | | if (data instanceof FacePhotoItem) { |
| | | final FacePhotoItem item = (FacePhotoItem) data; |
| | | |
| | | if (item.getWarning().length() > 0 && "来访登记".equals(item.getStatus())) { |
| | | //warningTv.setText("警告"); |
| | | warningTv.setVisibility(View.VISIBLE); |
| | | } else { |
| | | warningTv.setVisibility(View.GONE); |
| | | } |
| | | |
| | | |
| | | nameTv.setText(item.getName()); |
| | |
| | | VisitorRegisterFragment.getInstance().visitorCheckIn(item); |
| | | } |
| | | }); |
| | | } else { |
| | | statusTv.setBackground(null); |
| | | statusTv.setOnClickListener(null); |
| | | } |
| | | } |
| | | |