I want to accomplish a few tasks. I have some touch points with me(co-ordinates where users touched the screen) for Android. I want to process these points and fire event for possible gestures. I CANNOT use the Gesture API and want to process the points myself and fire events or something similar which then can be handled by the classes which extends this class.
So,
- Should I use the Java level to process and fire events or some C code will be needed to ensure performance is nice?
- (considering I use Java)How can I fire events which then can be handled by the classes which extend this class?
- If I have to use a lower layer how can that be done?
Thank you :)