xuxiuxi
2017-03-30 3505993cb3c816942bc4f10e842e357872fdf285
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/fragment/CheckInFragment.java
@@ -50,6 +50,7 @@
    
    private View fragment_check_in_left;
    private View fragment_check_in_right;
    @ViewInject(R.id.fragment_check_in_left_radio_group)
    private RadioGroup fragment_check_in_left_radio_group;
    @ViewInject(R.id.fragment_check_in_left_sort_radio_group)
@@ -81,6 +82,29 @@
    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;
    }
    @Override
    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);
@@ -177,28 +201,6 @@
    @Override
    protected void initData() { loadList(); }
    @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;
    }
    @Override
    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;
    }
    @OnClick(R.id.fragment_check_in_left_back)
    public void back(View view) {