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.
0
votes
0answers
10 views
How to add Pan to UITableViewCell
I am trying to add a pan to my UITableViewCells and I have the following code. For some reason the handlepan method is never being called even though I referenced the class from the storyboard and set ...
0
votes
1answer
21 views
Android: recognize with gestures two digit numbers
I have create an application using gestures library and works well when I try to detect numbers from 0 to 9, but now I want to detect from 0 to 99. The application is easy, only just ask for an ...
0
votes
1answer
12 views
How to disable gesture highlight animation on onGesturePerformed?
I was doing similar gesture detection from vogella tutorial here.
My MainActivity is:
package com.example.gesturesaveopendocs;
import java.util.ArrayList;
import ...
0
votes
1answer
15 views
Where to find com.apple.eawt.event* class reference
I have been working on integrating the LeapMotion (leapmotion.com) with OS X. I believe this is achievable via the use of the native LeapMotion API as well as the apple GestureUtilities package ...
1
vote
1answer
40 views
Android: best way to handle point, line and circular gestures
I need to handle 3 types of gestures in my app: points, lines and circles.
Circles and lines are vectored (may be drawn in different directions, like in windows 8 picture password).
Now I'm looking ...
-3
votes
3answers
46 views
android listview and button and text with gesture detection
I am new to android programming. I have this problem that I created a listView with button and text. I wanted all of this object to be active. Meaning I can click or touch any of these 3. The main ...
0
votes
1answer
19 views
Simulate gestures in Android
How can I simulate gestures programmatically.
I get all the points and I would like my app to repeat these drawings.
public void onGestureStarted(GestureOverlayView gestureOverlayView, MotionEvent ...
0
votes
0answers
18 views
How to get a mouse Position. in VS2012/VS 2010
I intend to control the mouse cursor using gestures. I want to use my finger to control the cursor. Now, I get the finger position(X,Y,Z) coordinates from my camera SDK. What i want to do now is map ...
0
votes
0answers
20 views
Fluid swipe and scrolling 10.7 style
I'm looking to add two finger "fluid swiping" to my app. Anyone who has used the week view in the Calendar app that comes with OSX will have seen what I'm trying to do.
I have a scroll view, and I ...
0
votes
0answers
18 views
Can I create dynamically resizable widgets?
I am currently attempting to create an mp3 player that relies on gestural interaction. In particular I wish to use direct manipulation in my system. One particular feature I wish to have is a circle ...
1
vote
0answers
67 views
ECSlidingViewController and Storyboards Swipe Gesture Recognizer
I have implemented ECSlidingViewController's left and right panning gesture to present child view controllers in two layers (this works fine).
I have then used storyboards to implement an Up Swipe ...
0
votes
1answer
66 views
Android OnTouchEvent: Debugging InputEventConsistencyVerifier messages
I have a layout configured with gesture listener for OnTouchEvent(). The layout contains a listview and I am using gestures to capture row id of the listview.
I have the following code -
...
0
votes
1answer
27 views
ScrollView - Send Touches to View below
My setup - and I cannot change it - is right now:
Root View
- UIView
-- ScrollView2
- ScrollView1 (this is top in view hierarchy)
The first scrollview is used to apply some transitions on the below ...
0
votes
0answers
23 views
gestures.js : click events does not work after adding swipe events
If anyone uses this library: http://webscripts.softpedia.com/script/Development-Scripts-js/Mobile-Development-Tools/gestures-js-73159.html for handling mobile events I have a question for you.
I have ...
0
votes
3answers
30 views
How can I keep an UIimageView on top of other uiimageviews when using pan or other gestures
I have a ViewController on which I can move multiple UIImageViews using gesture recognizers. it's working fine but the UIImageView selected is not on top of the others.
The UIImageViews keep the ...
0
votes
1answer
57 views
Implementing image gestures: UIImageView mode conflicts with pinch gesture
Pan works fine for me, but pinch with recognizer code like this does not:
- (void)pinchDetected:(UIPinchGestureRecognizer *)pinchRecognizer
{
CGFloat scale = pinchRecognizer.scale;
...
1
vote
0answers
43 views
-swipeWithEvent: not called until a two-finger scroll occurs
I have a NSView subclass inside an NSScrollView that implements -swipeWithEvent. I've noticed that swipeWithEvent: is never called until the user first performs a two-finger scroll on the trackpad. ...
0
votes
0answers
98 views
Pinch to zoom in Visual Studio 2012 IDE (code view) not working?
so I mean just the code viewer window thing! (even spent 15 minutes trying to figure out what that window is called, no result) NOT in designer view, simulation etc.
Perhaps best illustrated by an ...
0
votes
0answers
49 views
Gesture fling not working on emulator
I have developed a small app to test for gestures using fling in android.
Following is the code,
public abstract class MainActivity extends Activity implements OnGestureListener {
public final ...
0
votes
0answers
44 views
How to handle/disable ie gestures
i wrote a little app to display web pages for my windows embedded compact 7 module with gesture recognition.
though when i load a local html (or browse any webpage), the default ie gestures(i.e ...
0
votes
0answers
19 views
How to bind Smartboard Finger Gestures to normal Mouse inputs in Javascript?
I wrote a javascript WebApp which has a pc optimized interface. Now a SmartBoard seems to be able to trigger whether it is used with a pen or with a finger, which causes huge problem as it seems to ...
0
votes
1answer
28 views
cocos3d billboard paning with gestures
I want to pan the billboard using using gestures how can i do that, i have modified the DemoMashUp like this:
- (void)dragBy: (CGPoint) aMovement atVelocity: (CGPoint) aVelocity
{
if ...
1
vote
0answers
111 views
ViewPager (and its swiping) in the header of a ListView
I have a ViewPager inside a header of a ListView, and I noticed that, when you're swiping the viewpager, if the finger moves a little bit on the Y axis, the event gets canceled (I guess it's ...
0
votes
0answers
48 views
userInteractionEnabled = NO and stil receive gesture
In my storyboard I have a collectionView with custom UICollectionViewCell class containing a custom UIView. The collectionView has a tap gesture, my goal is to enable/disable the tap if specific rule ...
0
votes
2answers
148 views
JS that should listen for pinch in and pinch out not working
I am trying to execute a function on pinch in of the body and then another function on pinch out.
Since i'm already using jquery.hammer.js in this document and hammer can listen for in and out ...
4
votes
3answers
261 views
Next & Previous Animations
I have made a PopupWindow that pops up when a user selects an item in a list. And then when he swipes left and right on the popup window, the data (in the popup) is change to the previous and next ...
0
votes
2answers
97 views
Page animation with visual feedback on drag gesture
I was wondering, I'm currently using a slide in and out page transition when the user presses a Next of Previous button on the appbar.
( concept: going through a set of articles inside a selected ...
0
votes
2answers
77 views
iOS - Can an app running in the background send touch / gesture events to another app in the foreground?
I have been asked to develop an app that will record and later "play back" touches and gestures onto another app running in the foreground.
From my experience and knowledge, this is not possible ...
1
vote
1answer
43 views
os x custom dictionary or custom lookup function
In Lion and Mountain Lion you can double-tap-3-fingers to look up word from dictionary. This gesture is so quick, clean and nice way to search for words, but it doens't support custom translations.
...
0
votes
2answers
41 views
How to unblock pan and pinch events in a UIScrollViewDelegate?
I have a UIView which has a UIScrollView subview and is a UIScrollViewDelegate. Since I've implemented viewForZoomingInScrollView I stopped getting pan and pinch events for the UIView.
How can I get ...
0
votes
1answer
97 views
OnGestureListener cancelling out onCreateContextMenu
I have an OnGestureListener on my ListView because I need gestures over it, but now ContextMenu will not work.
Edited code:
I have this inside the onActivityCreated method of my Fragment for the ...
0
votes
0answers
168 views
hammer.js rotation resets on next touch
I am trying to improve on this tutorial script http://www.appliness.com/multitouch-with-hammer-js/
Apart from some nonsense code, the problem is with rotation. It works fine on the first rotation, ...
7
votes
1answer
362 views
Disable pinch to zoom in IE10
In IE10 touch mode I wish to make only a certain part of the page zoomable. The rest should not be.
I found this: http://msdn.microsoft.com/en-US/library/ie/hh772044.aspx and tried to set ...
0
votes
1answer
57 views
Importing Gesture search resource into my application
Hi I have been making an app that recognizes gestures. I am attempting to use Google's gesture search resource file in my program.
The problem: The gesture resource file crashes my application and ...
1
vote
3answers
573 views
How to implement swipe gestures for mobile devices?
I have an application made in AngularJS which has arrow key navigation to switch views.
I want to implement this navigation using swipe for touch devices. I tried jGestures library but it doesn't go ...
0
votes
1answer
34 views
Hook up a Rect to a gesture recognizer for panning?
I have a bottomView (UIView) and a topView (UIView).
bottomView has a red background and in IB, I've set topView to clearColor and Opaque to OFF.
With the following code, I achieve my goal of ...
0
votes
1answer
60 views
What view is revealed when panning UITableViewCell?
I am panning UITableViewCell contentView as in the code below. I would like to know what is the view that exists behind the UITableViewCell contentView that is being moved?
The reason I ask is ...
0
votes
0answers
33 views
Android Path + Tracing Alphabets
I'm trying to trace the Path 'A'
I came across tutorials for creating gestures.
But i couldn't figure it how to enable such gestures only for a specified portion.
Also the Gestures must be on a ...
0
votes
0answers
16 views
How to interrupt a drag gesture at the edge of a trackpad and resume it elsewhere?
I would like to reposition my fingers on the trackpad without interrupting the current gesture. Is there something available to do this ?
0
votes
1answer
50 views
Adding fling gesture to an ImageView
I'm trying to add fling gesture to an imageview. Im using this code
public class MyActivity extends Activity {
private void onCreate() {
final GestureDetector gdt = new GestureDetector(new ...
2
votes
0answers
148 views
Is there a javascript gesture library that works with the Samsung galaxy tab?
i have been experimenting with javascript gesture libraries. They all work great wife the iPad mini, however, when I try them on my Samsung Galaxy Tab (GT-P7510, Android 4.04), the results are at best ...
0
votes
2answers
72 views
Gestures in Android
There are more than 30 pictures in my android app.. I'm planning to show one image at a time when the user swipes left or right.
What is the best way to do this? Can you please point some working ...
1
vote
0answers
57 views
XNA Support Gestures on Windows 7
One of my friends is working on a Windows phone 7 game and XNA allow you to support gestures, now he wants to use the same code so the game will be supported on PC (Windows 7) i want to know how i ...
1
vote
0answers
184 views
Android tabs+swipe fragments redrawing
I'm using android feature for Tabs+Swipe application. It generated most of my code. I have MainActivity, SectionsPagerAdapter and Fragment classes. In this application I will have 2 tabs, so I created ...
0
votes
0answers
28 views
How to get action of elected pointer?
I want to save all the important informations about pointer in one array.
@Override
public boolean onTouchEvent(MotionEvent e) {
float touch[][] = new float[5][3];
final int pointerCount = ...
0
votes
1answer
179 views
Kinect recognises too many swipe right gestures even if I sit still
This is from my main window:
foreach (Joint joint in skeleton.Joints)
{
if (joint.TrackingState != JointTrackingState.Tracked)
continue;
if ((joint.JointType == JointType.HandRight) ...
0
votes
0answers
107 views
override sendEvent
I am overriding the UIApplication sendEvent: with this implementation:
-(void) sendEvent:(UIEvent*) event
{
[super sendEvent:event];
[EventsHub sendEvent:event];
}
When I am receiving event ...
0
votes
0answers
101 views
Touch - Swipe rotateY - jQuery
I'm using this small and pretty well done script:
http://www.netcu.de/jquery-touchwipe-iphone-ipad-library
What I need to do, is apply an incrementing rotation every swipe gesture.
I've got a DIV and ...
-3
votes
2answers
168 views
Prevent all default gestures on iPad Safari
How to disable all default gestures on Safari on iPad using plain javascript.
I have tried using event.preventDefault(); for every event but it isn't working.
I run the app in the Safari and I want ...
1
vote
2answers
734 views
Proximity Sensor Gestures
I tried googling around for a solution but couldn't find one. There's tons of app out there that use the proximity sensor (and presumably the ambient light sensor) to detect gestures. How do they do ...





