2

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?

Matt
  • 5,461
  • 7
  • 36
  • 43

1 Answers1

0

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

west44
  • 747
  • 3
  • 12
  • 24