Markdown:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
Fortunately, RecyclerView has its own “android:scrollbars” option.
If you need a vertical scrollbar, then add your RecyclerView’s XML :
android:scrollbars="vertical"
If you need a horizontal scrollbar, then add your RecyclerView’s XML :
android:scrollbars="horizontal"
So easy and thanks Google Devs to put this option for us :P
If you have any question, ask me :)