How to enable scrollBar in RecyclerView

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 :)

How to extract filename from Uri?

Now, we can extract filename with and without extension :) You will convert your bitmap to uri and get the real path of your file. Now w...