The tag refers to a method of interaction with graphical user interface. Instead of simply choosing, user may draw a shape (so called gesture) over an item, which is recognized by the software and triggers specific reaction. Gestures are very popular, but not limited to touchscreen applications.
Questions tagged [gestures]
516 questions
3
votes
2 answers
android - detect gesture on different views
I need to detect different gestures on more then one views. My views need to be able to receive Tap, Double Tap and Drag Events. I tried the Gesture Detector but my implementation shows me only global gesture events and I can't connect these events…

Anthea
- 3,741
- 5
- 40
- 64
3
votes
1 answer
How to make a scrollable UI In Touch Flash CS5 for Mobile Devices (Primarily iOS)
I wanted to know how I would make a whole symbol (an image) scrollable? I have found out how to do the multi-touch pinch to zoom but I can't find any code samples that will let me make the image scroll vertically only with one finger.
So all I want…

tushar747
- 673
- 2
- 12
- 25
3
votes
1 answer
NSClickGestureRecognizer - how to pass on the click once recognised
In my ViewController I have set up a NSGestureRecognizer in order to know when particular TextField is clicked in by the user.
in viewDidLoad() override I have
let gesture = NSGestureRecognizer()
gesture.buttonMask =…

Gazing South
- 115
- 8
3
votes
3 answers
ontouchevent gesture scrolling issues
I'm using the following Javascript to create ontouchstart/move/end callbacks on div elements for an iOS web app. The only problem at the moment is that when you try to scroll up and down the page, it triggers the ontouchstart element and changes the…

TronCraze
- 295
- 1
- 6
- 14
3
votes
3 answers
iOS Web App touch gestures
I've searched all across the web to find a simple way of adding touch gestures to a simple button. Basically I'm trying to find a simple way of getting the back button (which you usually see on the task-bar at the top of an iOS device) to change CSS…

TronCraze
- 295
- 1
- 6
- 14
3
votes
1 answer
Trying to swipe away items in react-native FlatList but not getting onResponderTerminationRequest events
I'm using react-native
I have a FlatList that displays a sequence of notifications.
I use the built-in Gesture Responder System to allow the user to swipe away notifications they are no longer interested in.
My list items work like so...

Brent Larsen
- 1,042
- 8
- 10
3
votes
2 answers
Android GestureOverlay with vertical and horizontal strokes
I am currently trying to implement GestureOverlay to capture both vertical and horizontal strokes on top my view. Typically this functionality is not accepted, as it assumes you are applying on top of a scrollable view.
Using android:orientation I…

Josh
- 2,685
- 6
- 33
- 47
3
votes
1 answer
Rotate, scale and pan element in UWP
My goals are quite simple. I want to be able to do multiple transformation of an image in my UWP application using primarily touch screen gestures. More precise I want to handle each manipulations like
Pan (Translate) - One finger gesture to pan…

Paw
- 43
- 3
3
votes
1 answer
Gestures Builder isn't installed on my emulator
I've tried several emulators with different SDK versions (2.1 and 2.3), and neither one has the Gestures Builder application installed.
Any ideas?

Quentamia
- 3,244
- 3
- 33
- 42
3
votes
1 answer
Is it safe to change `SKNode`s in a gesture recognizer action method?
Apple states in https://developer.apple.com/documentation/spritekit/skscenedelegate :
Modifying SpriteKit objects outside of the ordained callbacks (a
background queue or anything else non-main-thread) can result in
concurrency related…

Klaas
- 22,394
- 11
- 96
- 107
3
votes
0 answers
UICollectionView inside UIScrollView not scrolling
I have a vertically-scrolling scroll view that has a single subview. This subview has a couple of collection views. I want them to scroll horizontally. It doesn't work because they are inside the scroll view.
The problem is that the pan/scrolling…

Antonio Sejas
- 31
- 2
- 4
3
votes
0 answers
How to combine onTap with Gestures?
It would have been nice to see an example of how to combine onTap with Gestures and how to determine the tap position in a zoomed image. (I have used each of them separately, but I suspect some interference here, and I am not sure what kind of x-y…

Nils Thorell
- 31
- 2
3
votes
0 answers
Drag Buttons and Drop them in a specific area in the canvas to trigger other function like page change and printing text
I am new with kinect V2, windows 10. I have couple of wpf buttons at the bottom on a wpf page and i want to drag each button one by one to the central area of the canvas and drop it. This should trigger the event for that button and it should…

Payal Kumar
- 75
- 5
3
votes
2 answers
Xamarin Forms - Listview view cell swipe left and right events using xamal
I need to write code (or XAML) for listview viewcell swipe left and right gestures.
When swiping left, delete the records from listview (or observable collection) list and update the remaining listitems in listview. When swiping right, save the…

user2159696
- 41
- 2
- 5
3
votes
1 answer
Enable pinch to zoom in chrome app
Currently I am working on a Packaged Chrome app which incorporates a Google Map. I am however unable to zoom using pinch. Also 'normal' zoom on a webpage doesn't work.
All pages (and maps) I use are zoomable with pinches if I open them in Google…

sy1vain
- 41
- 4