| | |
| | |
|
| | | public View addLeftLayout() {
|
| | | mViewLeft = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_visit_left,null);
|
| | | mRecyclerView = (EasyRecyclerView) mViewLeft.findViewById(R.id.visitor_manager_recycler);
|
| | | mRecyclerView = (EasyRecyclerView) mViewLeft.findViewById(R.id.fragment_attendance_left_list_view);
|
| | | LinearLayoutManager manager = new LinearLayoutManager(getActivity(),LinearLayoutManager.VERTICAL,false);
|
| | | mRecyclerView.setLayoutManager(manager);
|
| | | mAdapter = new VisitLeftAdapter();
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | @OnClick(R.id.visitor_manager_back)
|
| | | @OnClick(R.id.fragment_visit_left_back)
|
| | | public void back(View view) {
|
| | | MainActivity.selectPage(0);
|
| | | }
|