How to disable blue shadow in scrolling (android apps).
android, shadow
Solution
Use this in your XML `ScrollView`:
android:overScrollMode="never"
You can set to "always", "never", or "ifContentScrolls".
Problem
I have tried below things to disable the blue shadow while scrolling All of this doesn't work: ``` android:fadingEdge="none" android:background="@null" android:cacheColorHint="@null" ```