my RecyclerView do not call onCreateViewHolder, onBindViewHolder, therefore, does not appear nothing in recyclerview. I put logs for debugging, and no log is shown. What can
Might have been a different case but for me I just forgot to set the Layout Manager as follows:
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity()); recycler.setLayoutManager(layoutManager);
Hope it helps :)