Questions tagged [swipe]

A quick motion gesture across the touchscreen.

A quick motion gesture across a touchscreen.

2837 questions
0
votes
1 answer

jQuery Mobile swipe events not fire when using scrollview plugin

I use swipe events to change pages when swiping, that worked fine until using ScrollView plugin. I saw the help from jQuery Mobile: scrollview and swipe events but I don't know how to implement it now. Any code snippets for me? Thanks in advance.
vudh
  • 1
  • 1
  • 2
0
votes
1 answer

Android: wrong listener behaviour?

I am starting with android development. I would like to do a calendar activity. I have an activity with it implements OnGestureListener, with methods like onFling(), in order to detect swipe gestures, and change the month of the calendar. This works…
user1116714
  • 315
  • 2
  • 3
  • 12
0
votes
1 answer

Android - Custom GridView with fling - error

I have I problem with my custom GridView. I wrote the custom GridViewClass to enable the fling gesture within the GridView. However, there are some errors I don't quite understand. My code:
ThunderSS
  • 443
  • 1
  • 7
  • 17
0
votes
1 answer

iPhone Swipe UIKeyboard to Switch Views

I want to achieve something like this with my application and its keyboard. http://www.youtube.com/watch?v=ajs1p5NCNw4 from 1:32 - 1:38. How can you hide your keyboard by swiping it horizontally and show another view on its place? Is it possible…
haluzak
  • 1,133
  • 3
  • 17
  • 31
0
votes
1 answer

Sequence of Fragment objects in FragmentActivity strange

I'm using a FragmentActivity with a FragmentPagerAdapter which holds a number of Fragment objects through which I can slide with a horizontal swipe. In the FragmentActivity is a TextView which displays the current item in the list (looks something…
Dominik
  • 1,703
  • 6
  • 26
  • 46
0
votes
1 answer

jQuery Mobile swipe li to check hidden checkbox

I am looking to swiperight on jQuery Mobile to highlight the list and check the hidden checkbox within. And when I swiperight again, it will reverse the action. Here's what I gathered so far: HTML:
0
votes
1 answer

Swipe html pagesLoad another html page if I swipe horizontal

How would it be possible to swipe (left) html pages?
l00per
  • 481
  • 4
  • 7
  • 19
0
votes
1 answer

Android - Horizontally Scrolling Activities

I have some activities and I would like to be able to switch between them by swiping. Is this possible? I was told to use Fragments, but I 've seen it working in 2.x apps. Is it implemented with Gallery or Tabs ? Thanks.
Michael Chourdakis
  • 10,345
  • 3
  • 42
  • 78
0
votes
1 answer

UIWebView override swipe gesture

I have a UIWebView that loads a page that captures left/right swipe gestures. So all swipe gestures are eaten up by the UIWebView, meaning that these gestures do not work within my app. How do I: Prevent the UIWebView from eating the left/right…
Dave
  • 95
  • 1
  • 10
0
votes
1 answer

is there a way to manually set the URL when I swipe a new page into view using jquery-mobile?

I'm using Jquery Mobile pagination plugin and trying to work it into a plugin of mine. Pagination allows to swipe through pages on mobile devices. My plugin is using a splitscreen, so I'm swiping pages in either one of the panels I'm using. I…
frequent
  • 27,643
  • 59
  • 181
  • 333
0
votes
1 answer

IOS: gesture for more views

I have this code: UISwipeGestureRecognizer *recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(rightSwipeHandle:)]; [recognizer setNumberOfTouchesRequired:1]; [view1 addGestureRecognizer:recognizer]; [view2…
cyclingIsBetter
  • 17,447
  • 50
  • 156
  • 241
0
votes
1 answer

Swipe gestures fires twice

I'm developing an application for the Ipad using Monotouch (5.0.4). I have a problem with swipe gestures which I hope someone can help me with, where the swipe gestures calls my target delegate twice. The specific case is this: In my…
jub
  • 43
  • 1
  • 7
0
votes
1 answer

Objective C: Camera Swipe from user's finger

My question is what algorithm or math should I use to keep the screen swipe momentum TO KEEP SCROLLING if the user does a fast swipe. Example: There is an image on the screen that revolves in a circle, if the user swipes the camera slow, it will…
0
votes
1 answer

MonoDroid Click Delegate and Swipe Detection

I have a checkbox with a custom image for the button. I used the click delegate to perform an action whenever the button is clicked: box.Click += { //do some stuff... } This is working great. However, now I have been given the requirement to add…
Justin
  • 6,564
  • 6
  • 37
  • 34
0
votes
1 answer

Swipe Gesture with Direction and Velocity to move an object on the screen?

So , I am testing out a game with a simple ball (which is basically an object of UIImageView) fixed on the screen using CGPointMake and I am implementing a simple swipe gesture with UIGestureRecognizerDelegate. My intention is to just flick the…
Legolas
  • 12,145
  • 12
  • 79
  • 132