Skip to main content

Monodroid swipe



I need to implement swipe for my application. Meanwhile i find lots of examples on how to do this in Android, it's quite the opposite with Monodroid. I'm having problems converting java code to c# and the mondroid documentation is just crap! Cant find anything about onFling or similar approaches.





Anyone that can point me in the right direction, maybe a tutorial or code snippet?





My plan is to use a viewflipper with the swipe detection.





Thanks!


Comments

  1. I think this may be what you want, it allows you to swipe left and right to change views:

    https://github.com/xamarin/monodroid-samples/tree/master/ViewPagerIndicator

    ReplyDelete

Post a Comment

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.