I was using a Dependency Injection - ButterKnife and this problem arised because I had not binded the view.
So inside onCreate() I just inserted this line:
ButterKnife.bind(this);
My RecyclerView declaration with Dependency Injection:
@BindView(R.id.recyclerview)
RecyclerView recyclerView;