views:

74

answers:

0

I've successfully enabled scrolling for an Android TextView by either placing it within a ScrollView or, alternatively, using TextView's setMovementMethod (e.g., myTextView.setMovementMethod(new ScrollingMovementMethod()); ).

However, I would ideally like to see the TextView scroll in a fashion similar to the IPhone/IPod touch where the text overshoots and bounces back. In the emulator, a TextView simply scrolls to the beginning or end without any animation effect.

Is there an easy way to enable this scrolling behavior or some other approach that uses Android's animation capabilities and the OvershootInterpolator?