Is there any way to force overscroll glow effect in android?

2.6k Views Asked by At


I am developing an application, in which there are scrollviews.
In the emulator, the overscroll effect is shown, in an HTC Legend it is shown, but in my Samsung Galaxy S2 its not... (I DO have gingebread, with overscroll glow enabled). I like this effect and I would like to apply it to my application (if the user have 2.3+ of course). Is there any way to do this? Thank you!

1

There are 1 best solutions below

4
On BEST ANSWER

Maybe use attribute android:overScrollMode in your layouts. Are you using it?

Example:

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:overScrollMode="always">