| | |
| | | private CheckInQueryItem selectedVisitor;
|
| | | private CheckInQueryItem selectedInterviewee;
|
| | |
|
| | |
|
| | | @Override
|
| | | public View addLeftLayout() {
|
| | | fragment_check_in_left = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_check_in_left,null);
|
| | | ViewUtils.inject(this, fragment_check_in_left);
|
| | |
|
| | | mAdapter = new CheckInRightCellAdapter(getActivity(),Constant.VISITOR_CELL);
|
| | |
|
| | | return fragment_check_in_left;
|
| | | }
|
| | |
|
| | |
| | | public View addRightLayout() {
|
| | | fragment_check_in_right = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_check_in_right,null);
|
| | | ViewUtils.inject(this, fragment_check_in_right);
|
| | | // fragment_check_in_right_visitor_cell = (CheckInRightVisitorCell) fragment_check_in_right.findViewById(R.id.fragment_check_in_right_visitor_cell);
|
| | | //
|
| | | // fragment_check_in_right_interviewee_cell = (CheckInIntervieweeCell) fragment_check_in_right.findViewById(R.id.fragment_check_in_right_interviewee_cell);
|
| | |
|
| | |
|
| | | return fragment_check_in_right;
|
| | | }
|
| | |
|
| | | |
| | | @Override
|
| | | protected void initViews(View view, Bundle savedInstanceState) {
|
| | | super.initViews(view, savedInstanceState);
|
| | |
| | | }
|
| | | });
|
| | | visitorRegisterSearchEt.addTextChangedListener(new TextWatcher() {
|
| | | @Override
|
| | | public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
|
| | | @Override
|
| | | public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
|
| | | @Override
|
| | | public void afterTextChanged(Editable editable) {
|
| | | loadList();
|
| | | }
|
| | | public void afterTextChanged(Editable editable) { loadList(); }
|
| | | });
|
| | | }
|
| | |
|