I want to develop an app that can save the touch gesture history into an image in Android platform.
This is the brief explanation from android developer website about touch gesture history.
"History. You can find the size of a gesture's history by calling the MotionEvent method getHistorySize(). You can then obtain the positions, sizes, time, and pressures of each of the historical events by using the motion event's getHistorical methods. History is useful when rendering a trail of the user's finger, such as for touch drawing. See the MotionEvent reference for details."
source : http://developer.android.com/training/gestures/movement.html