My RecyclerView does not call onCreateViewHolder, onBindViewHolder even MenuViewHolder constructor, therefore nothing app
This does not apply for your particular case. But this might help someone else.
This reason could be careless usage of the following method
recyclerView.setHasFixedSize(true);
If not used with caution, this might cause the onBindView and onCreateViewHolder to not be called at all, with no error in the logs.