If I quickly swipe my finger around the screen, android only gives me about 15 different touch events per second.

This means that if I have an image panning around to follow my finger, it will only move 15 times per second, which is essentially 15 frames per second.

Google maps pans much more smoothly than 15 frames per second.

Does anyone know how it is possible to make panning smoother, when the android system won't provide you more than 15 touch events or so per second?

link|improve this question

2  
Interpolate between each event? – asawyer Jun 8 '11 at 18:58
Your swipe lasts 1 second and during that time only 15 events? – fhucho Jun 8 '11 at 19:03
feedback

1 Answer

Your solution is use an integrated methods of Path class: quadTo() or cubicTo(). Check this: http://developer.android.com/reference/android/graphics/Path.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.