| |
---|
| | String token = citrus.getToken(); |
---|
| | String accountId = citrus.getAccountId(); |
---|
| | |
---|
| | bookList = new ArrayList<>(); |
---|
| | bookList.add(new Book("a", 1, "a", true, "#ff0000")); |
---|
| | // bookList.add(new Book("a", 1, "a", true, "#ff0000")); |
---|
| | |
---|
| | RecyclerView recyclerView = view.findViewById(R.id.my_books_list); |
---|
| | recyclerView.setHasFixedSize(true); |
---|
| | RecyclerView.LayoutManager layoutManager = new GridLayoutManager(view.getContext(), 2); |
---|
| |
---|
| | |