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
9
votes
2 answers
The UICollectionView "swipe-away" in iOS7 app manager?
On any 2014+ iPhone or iPad, double-click the home button to see the "app manager"
This is a left-right UICollectionView BUT it has a "swipe-away" gesture .. swipe up. How is it done? It's not so easy to "remove" a cell from a…

Fattie
- 27,874
- 70
- 431
- 719
9
votes
3 answers
Creating a UIView that captures taps, but is transparent to all other gestures
I want to achieve the following.
Scenario: The iOS keyboard is on-screen while the user is typing into a particular text field. The user can tap anywhere outside of the keyboard and text field to dismiss the keyboard (without activating any buttons…

mjh
- 3,508
- 3
- 19
- 19
8
votes
2 answers
How to identify three finger tap in android
I want to detect three finger tap in android screen.I am able to detect up to two fingers.How to detect three fingers it?I heard some where that android is capable of detecting 2 fingers.Is it so?

androidGuy
- 5,553
- 12
- 39
- 56
8
votes
2 answers
Android, gestures over clickable widgets
My application contains an area filled with buttons. I wish to implement the activity in such way, that fling gesture over the button area would switch it to one of two another areas (using ViewFlipper).
I've made two approaches on detecting…

Spook
- 25,318
- 18
- 90
- 167
8
votes
3 answers
Get Labels Animation Same as Phibrow App
I want to create same animation as in Phibrow App. Please see following video for more details:-
https://www.dropbox.com/s/wwc69a9ktaa52je/IMG_0155.MOV?dl=0
I have tried to get this animation using UIPinchGestureRecognizer,…

Meet Doshi
- 4,241
- 10
- 40
- 81
8
votes
2 answers
CGAffineTransformScale in Swift 3.0
Swift 3.0 does not have a method called CGAffineTransformScale.
func didPinchGesture(pinchRecognizer : UIPinchGestureRecognizer) {
if let view = pinchRecognizer.view {
view.transform = CGAffineTransformScale(view.transform,
…

Eric
- 893
- 10
- 25
7
votes
1 answer
IOS drag and drop between scroll views
So here is the catch. I have two Scroll Views, one is filled with 10 odd subviews, that are basically like playing cards (custom class views). I want to be able to drag and drop some of these views to the empty scroll bar that i have.
There are…

SeriousSam
- 219
- 2
- 14
7
votes
4 answers
-[NSResponder swipeWithEvent:] not called
I am writing an application targeting OS X Lion and Snow Leopard. I have a view that I want to have respond to swipe events. My understanding is that three-finger swipes will call -[NSResponder swipeWithEvent:] if that method is implemented in my…

nomothetis
- 233
- 2
- 7
7
votes
1 answer
Detect visual gestures offline from .xef files
I am trying to combine DiscreteGestureBasics project which provided with the kinect sdk tool and with RecordAndPlaybackBasics. RecordAndPlaybackBasics code has two main methods playback a .xef file and record a .xef. I want to read a .xef file and…

Jose Ramon
- 5,572
- 25
- 76
- 152
7
votes
8 answers
Synaptics custom gestures for Windows using registry
I am a huge fan of mouse gestures and the ones introduced in Windows 10 are great.
However, I used to be able to use three-finger swipe right/left as back and forth gestures in my browser in Windows 8.1 and now the same gesture is used for task…

Rex
- 143
- 1
- 3
- 11
7
votes
4 answers
Tinder style drag gesture and drop with Javascript?
I'm trying to figure out what libraries I can use for a Tinder-style drag and drop gesture that only uses Javascript.
Needs to create an HTML element that responds to a drag gesture..
When touched and held, allows the element to follow the user's…

fuzzybabybunny
- 5,146
- 6
- 32
- 58
7
votes
2 answers
HMM algorithm for gesture recognition
I want to develop an app for gesture recognition using Kinect and hidden Markov models. I watched a tutorial here: HMM lecture
But I don't know how to start. What is the state set and how to normalize the data to be able to realize HMM learning? I…

Nickon
- 9,652
- 12
- 64
- 119
7
votes
2 answers
Is there an API for iOS's Assistive Touch Feature?
Does iOS SDK provide framework or API for us to use their Custom Gesture creation?

user1104676
- 71
- 3
6
votes
2 answers
Setting Gestures Color to Transparent
I am trying to make my application not to show any gestures wether they are recognised or not. As it stands at the moment I am able to set the recognised color to transparent. This works fine. However if I set unrecognisedgesture color to…

jiduvah
- 5,108
- 6
- 39
- 55
6
votes
1 answer
How can I check the touch gestures is enabled for the control or not?
In windows forms control, I have properly configured the touch gesture by using the SetGestureConfig method. It properly configured the touch gesture for the control. For some cases I need to check whether the control is properly enabled the…

Jagadeesan
- 233
- 1
- 13