I'd like to make a view in my Android app that flips between multiple views on a swipe/fling. I'd like it to behave more or less like the Android Launcher behaves when flipping between views. In particular,

  1. It should flip views on swipe.
  2. Generally a swipe will flip between one view and the next. It should not fling across all of the views.
  3. If you swipe slowly, you should see the views dragging as you're swiping, eg. the way the Launcher does it.

I tried using a ViewFlipper with a GestureOverlayView as per Romain Guy's blog post here, but there's no indicator to the user as they're swiping. This makes discoverability difficult, which is presumably why Launcher does it the way they do.

I tried using a Gallery object, but when I swipe from left to right, there's a certain amount of momentum that flings the users through all the views rather than just taking them to the next view.

Is there a good way to accomplish what I'm trying to do?

link|improve this question

67% accept rate
@google Seems like a great thing to add to the SDK! – emmby Feb 22 '11 at 18:06
feedback

4 Answers

up vote 14 down vote accepted

I know this is an old question but ViewPager is created for this exact same purpose. ViewPager is part of android compatibility package and more can be found at http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html

link|improve this answer
It's what the market app uses. It looks awesome! – Richard Sep 12 '11 at 13:01
feedback

Take a look at HorizontalPager. It's actually based on RealViewSwitcher, which in turn is based on the Android homescreen's code, and supports snap-to paging with drag feedback, as well as nested vertically-scrolling subviews. Gesture support for fast swipes isn't all it should be, but this may get you part of the way there (and I'd welcome contributions back).

link|improve this answer
Thanks Yoni, I owe you a beer – emmby Feb 22 '11 at 22:11
feedback

Check out SwipeView within this project https://github.com/fry15/uk.co.jasonfry.android.tools It does exactly what you want it to do and is super simple to implement.

link|improve this answer
feedback

@CommonsGuy extended ViewFlipper to do it. https://github.com/commonsguy/cwac-viewswiper Ihaven't used this one yet so im not sure if it moves with your finger like the launcher if not your going to have to make an OnTochListener to do it for you in me.ACTION_MOVE you will update the view to change its position. I'll post some sample code when I get home if you don't get another answer.

link|improve this answer
Thanks Tim, but it looks like that's a fairly simple combination of ViewFlipper with GestureOverlay, which wouldn't give you the visual feedback I'm talking about as you drag (like the Launcher does). I haven't tried the cwac-viewswiper yet so I may be wrong, but looking at the code I don't believe it does what I'm talking about. Please let me know if I'm wrong, and thanks again for the suggestion! – emmby Feb 21 '11 at 22:20
I noticed that after I answered. Sorry. – Tim Feb 21 '11 at 22:24
@emmby: Yes, ViewSwiper does not meet your needs. – CommonsWare Feb 21 '11 at 22:39
feedback

Your Answer

 
or
required, but never shown

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