Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How could I disable all the over scroll effect in my app?

The blue shadow over scroll effect looks really ugly in our app. Is there a way to disable all the over scroll effect? You know there are lots of ScrollViews and Lists in it... That would be a shame if I have to disable it in every widget that can scroll... thx~

like image 438
wsgfz Avatar asked Aug 24 '11 01:08

wsgfz


People also ask

Which component is used to add a scrolling effect in the app?

Components that contain built-in scrolling implementationsListView. GridView. ScrollView. NestedScrollView.

How do I get rid of the scroll color in flutter?

How to Remove ScrollGlow in Flutter?? The glow effect comes from GlowingOverscrollIndicator added by ScrollBehavior. To remove this effect, you need to specify a custom ScrollBehavior. For that, simply wrap any given part of your application into a ScrollConfiguration with the desired ScrollBehavior.


1 Answers

You can do it simply

In layout.XML

Set

android:overScrollMode="never" 

In scrollview

like image 98
Ashok Vijayaram Avatar answered Sep 23 '22 15:09

Ashok Vijayaram