Search code examples
javaandroidglowandroid-overscoll

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



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!


Solution

  • 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">