How to Remove RecyclerView’s Scroll Effect

This code segment provides you to control your RecyclerView’s scroll effect. You can open or close it.
Gist:

// How to close scrollMode in RecyclerView
<android.support.v7.widget.RecyclerView
   android:id="@+id/ssm_recyclerView"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:overScrollMode="never" 
/>

Markdown:
// How to close scrollMode in RecyclerView
<android.support.v7.widget.RecyclerView
   android:id="@+id/ssm_recyclerView"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:overScrollMode="never" 
/>
Basically, you need to add android:overScrollMode=“never” line to your RecyclerView.
If you cannot get what scroll effect means this is it :

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...