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
Is kind of silly, but another thing that can block the calls to the methods is to declare the visibility of the view as GONE.
android:visibility="gone" recyclerView.setVisibility(View.GONE);
Any of these will block the call of the methods in RecyclerView.Adapter
I hope it can help someone.