Questions tagged [multi-touch]

multi-touch refers to a touch sensing surface's (trackpad or touchscreen) ability to recognize the presence of two or more points of contact with the surface (Wikipedia)

1283 questions
4
votes
2 answers

jQuery mobile/JavaScript image pinch zoom for android and iPad

I have been searching for an uncomplicated solution to how an image (png) can be zoomed in and out without affecting the rest of the website, but found none. Have any of you used such a tool or know a way to do this using jQuery or javascript? I am…
WhatsInAName
  • 724
  • 2
  • 12
  • 32
4
votes
3 answers

Multi-touch two fingers taps

I have to implement a two fingers tap. For example I have a listView with multiple items, which already have a click listener for each row and touch listener. Now I have to do something if the user put two fingers on a row. How can I do this? Any…
Laura
  • 2,653
  • 7
  • 37
  • 59
4
votes
0 answers

Unable to receive all the pointer/touch messages injected at application level using Windows 8 Touch Inject API

I am able to inject pointer/touch messages successfully but unable to receive all the messages injected on an application (messages are captured in the application) even though all the messages are injected successfully without any errors. Please do…
user970478
  • 41
  • 3
4
votes
2 answers

How to detect two-finger tap in Android?

I need to detect two-finger tap in an Android app I'm working on. I'm also using ScaleGestureDetector and GestureDetector to detect tap, double-tap, long press and scale. In my onTouchEvent method I have: @Override public boolean…
Zhubin Salehi
  • 281
  • 1
  • 5
  • 14
4
votes
6 answers

How to force iPhone/iPod touch to handle more than 5 touches at the same time?

I would like to develop a multi-touch (up to 8 fingers) application for iPhone/iPod Touch. But during testing on my 1st gen iPod Touch once I put the 6th finger weird things started to happen. I don't get Touch Began for the 6th finger nor Touch…
Przemyslaw Zych
  • 2,000
  • 1
  • 21
  • 24
4
votes
2 answers

How can I rotate, zoom and drag together in an Image view, with border in Android

How can I perform rotate, zoom and drag together in an Android Imageview
Viju
  • 91
  • 2
  • 6
4
votes
2 answers

Android onscreen joystick issues

So I'm trying to build a game with an on-screen joystick that moves a bitmap around the screen. But when I hold the joystick down in any direction and keep it there, the bitmap will stop moving as well. Its only when I am moving the joystick does…
zkello
  • 239
  • 2
  • 15
4
votes
2 answers

C# Simulating multitouch with Kinect

I have a Kinect application that I can generate 1-4 distinct screen points (Left/Right hands for up to 2 people) and I would like to be able to send each Point to the application with focus as a multi touch message. I'm currently using SendInput to…
joe_coolish
  • 7,201
  • 13
  • 64
  • 111
4
votes
2 answers

detect move event by index pointer in android

I am working on a multitouch program that needs to record only the movements made by the second finger or index pointer. Now the documentation says that we can use MotionEvent.ACTION_POINTER_INDEX_MASK and & it with action and shift by INDEX_SHIFT…
rajankz
  • 644
  • 1
  • 5
  • 16
4
votes
3 answers

Phonegap IOS App Image ZOOM Multitouch

I'm developing an app with Phonegap for IOS. I would zoom and move an image contained in a box div (overflow hidden) with the finger: multitouch for zoom in and out and touchmove for move the image. Is it possible? and how? I'm looking with Google…
user835059
  • 163
  • 3
  • 12
4
votes
3 answers

Touch events not firing C# WPF

I have created a program that subscribes to WPF's touch events. Everything has been working as expected over the last few months, but yesterday none of the touch events would fire. I tried creating a new, simple program to test touch events, but it…
Sarah
  • 328
  • 1
  • 6
  • 15
4
votes
1 answer

Android Libraries for easy Multi Touch implementation that includes Twist/Rotate etc?

Has anyone run across a good implementation in library or package form that implements MULTI touch processing that includes pinch-zoom, rotate, two finger swipe etc. and is relatively easy to extend? I wrote the code for pinch-zoom and two finger…
Idistic
  • 6,281
  • 2
  • 28
  • 38
3
votes
0 answers

get raw touch data from Wacom touchpad

I have a Wacom Bamboo multitouch-pad and want to use it as an input device. It is connected to my pc. How can I get the raw touch data? For instance, if I'm touching at position {x,y} on touchpad, my application should get this point and send this…
Lucas
  • 55
  • 1
  • 2
  • 8
3
votes
1 answer

Implementing drag and drop with multi-touch in Android

I'm looking for a way to implement drag and drop with multi touch in my application. I have many views and I want that a first user drag a view in the same time than a second user is dragging an other view. My single touch drag and drop works well,…
Sébastien BATEZAT
  • 2,353
  • 26
  • 42
3
votes
1 answer

Zoom and Pan in GMap.net

I'm trying to make GMap.Net control multitouch enabled, using WPF build-in events but i wasn't successful. I found a series of articles about multitouch like this and this one. In all of them, ManipulationContainer is a canvas and movable controls…
Jalal
  • 6,594
  • 9
  • 63
  • 100