| | |
| | | /**
|
| | | * 访客->人员注册
|
| | | */
|
| | | private void RegisterCellViewFillData(EasyRecyclerViewHolder holder, int posistion){
|
| | | private void RegisterCellViewFillData(EasyRecyclerViewHolder holder, int position){
|
| | |
|
| | | RelativeLayout mLayout = holder.findViewById(R.id.fragment_home_bottom_register_cell_relative_layout);
|
| | | ViewGroup.LayoutParams layoutParams = mLayout.getLayoutParams();
|
| | |
| | | layoutParams.width = WindowsUtil.dip2px(context, 104);
|
| | | mLayout.setLayoutParams(layoutParams);
|
| | |
|
| | | final Object data = this.getItem(posistion);
|
| | | final Object data = this.getItem(position);
|
| | |
|
| | | ImageView fragment_home_bottom_register_cell_photo = holder.findViewById(R.id.fragment_home_bottom_register_cell_photo);
|
| | | TextView fragment_home_bottom_register_cell_to_register = holder.findViewById(R.id.fragment_home_bottom_register_cell_to_register);
|
| | |
| | | /**
|
| | | * 访客->来访登记
|
| | | */
|
| | | private void checkInCellViewFillData(EasyRecyclerViewHolder holder, int posistion){
|
| | | private void checkInCellViewFillData(EasyRecyclerViewHolder holder, int position){
|
| | |
|
| | | RelativeLayout mLayout = holder.findViewById(R.id.fragment_supervisory_bottom_visitor_cell_relative_layout);
|
| | | ViewGroup.LayoutParams layoutParams = mLayout.getLayoutParams();
|
| | |
| | | TextView fragment_home_bottom_visitor_cell_status = (TextView) mLayout.findViewById(R.id.fragment_home_bottom_visitor_cell_status);
|
| | | //statusTv.setText("");
|
| | |
|
| | | Object data = this.getItem(posistion);
|
| | | Object data = this.getItem(position);
|
| | | if (data instanceof FacePhotoItem) {
|
| | | final FacePhotoItem item = (FacePhotoItem) data;
|
| | |
|