Для просмотра с горизонтальной прокруткой установите свой макет RecylerView layoutManager следующим образом:
LinearLayoutManager linearLayoutManager
= new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
RecyclerView recyclerView=(RecyclerView) findViewById(R.id.recyclerView);
recyclerView.setLayoutManager(linearLayoutManager);
В RecyclerView
android:layout_width="match_parent"
android:layout_height="0dp"
В макете элемента RecyclerView
android:layout_width="wrap_content"
android:layout_height="wrap_content"