Disable list revision on samsung android

I need to completely disable overcroll in my lists so that I can implement my own super scroll functions.

It seems to be quite simple when you look at the main classes of the list, simply setting the super-scan mode to OVERSCROLL_NEVER. It does nothing on my Samsung Galaxy s2. I also tried to overwrite the overScrollBy function to do nothing. This does not work either.

Has anyone had a lot of experience with Samsung ListView settings that can help me?

+7
source share
4 answers
+1
source

Not my solution, but check https://gist.github.com/DHuckaby/3919939 . It works for me. Stupid samsung

+1
source

How about below code:

@Override protected float getTopFadingEdgeStrength() { return 0.0f; } @Override protected float getBottomFadingEdgeStrength() { return 0.0f; } 

Answer based on @cdhabecker Fixing Android Scroll ScrollView

0
source

The new RecyclerView can be used instead of ListView to solve the problem.

0
source

All Articles