So this is half a how-to and half a best practices question.

First, if I just want to get a simple "fling right" (which will go back to a previous activity) should I implement OnGestureListener or do something with GestureOverlayView?

I read Android - basic gesture detection and it looks like if I go with OnGestureListener I'll have to manually add the listener to all my views. This is annoying, plus I'd like to add this functionality to many activities, so i'd be nice if i could fit all the logic in a self contained function. So maybe GestureOverlayView would be preferable? But all the examples I see for it are really complicated... I don't want to make my own gestures. I just want a simple swipe/fling detect as in Android - basic gesture detection.

Secondly, if you advocate either position, can you post a simple example? Android - basic gesture detection is for extending SimpleOnGestureListener not implementing OnGestureListener and I'm a little stuck on the steps for actually setting the gesture listener to listen to views. As for GestureOverlayView, like i said, all I've seen are complicated examples of creating your own gestures.

link|improve this question

80% accept rate
feedback

1 Answer

Presuming you've had the chance of going through the example at Code Shogun: In onFling(), you could call finish() Activity in place of ViewFlipper method calls. http://www.codeshogun.com/blog/2009/04/16/how-to-implement-swipe-action-in-android/

So, call finish() Activity instead of

viewFlipper.setInAnimation(slideLeftIn);
viewFlipper.setOutAnimation(slideLeftOut);
viewFlipper.showNext();

Hope that helps.

link|improve this answer
I was looking for something to implement OnGestureListener rather than extending SimpleOnGestureListener, since I haven't seen an example for this. I was also looking for some philosophical explanation of best practices. At the least, this post seems like a vote for extending SimpleOnGestureListener. – Emily Jun 27 '11 at 21:36
feedback

Your Answer

 
or
required, but never shown

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