RE6
RE6

Reputation: 2724

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!

Upvotes: 2

Views: 2658

Answers (1)

nostra13
nostra13

Reputation: 12407

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

Upvotes: 4

Related Questions