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)
12
votes
2answers
8k views
Observing pinch multi-touch gestures in a UITableView
I am looking to implement a pinch in/out on top of a UITableView, I have looked at several methods including this one:
Similar question
But while I can create a UIViewTouch object and overlay it ...
20
votes
7answers
30k views
enable/disable zoom in Android WebView
There are some methods in WebSettings related to zoom:
WebSettings.setSupportZoom
WebSettings.setBuiltInZoomControls
I noticed they work differently on some deveices.
For example, on my Galaxy S ...
2
votes
3answers
7k views
Multiple button presses for Android 2.x
I am relatively new to this still, and I have been developing a small app that would benefit greatly from a user being able to press 2 buttons at one time. What is the best method for achieving this? ...
12
votes
5answers
13k views
How to disable multitouch?
My app has several buttons which trigger different events. The user should NOT be able to hold down several buttons. Anyhow, holding down several buttons crashes the app.
And so, I'm trying to ...
7
votes
2answers
10k views
Way to make a UIButton continuously fire during a press-and-hold situation?
You know how Mario just keeps running to the right when you press and hold the right-button on the D-Pad? In the same manner, I want my UIButton to continuously fire its action for the duration that ...
10
votes
5answers
22k views
jQuery - draggable images on iPad / iPhone - how to integrate event.preventDefault();?
I use jQuery, jQuery UI and jQuery mobile to build a web application for iPhone / iPad.
Now I create images and they should be draggable, so I did this:
<!DOCTYPE html>
<html>
...
9
votes
5answers
8k views
Is there a built in API for handling pinch-zoom functionality in Android
I just wanted to know if there is some kind of class to use the multitouch features of android 2.1. Specifically I am trying to implement pinch-zoom and was wondering if I always have to measure the ...
11
votes
5answers
29k views
android multitouch image zooming?
I'm displaying an image on full screen now i want to zoom it in or out.
Any one guide on how I can implement multi touch image zooming?
I am using the 2.1 sdk version.
7
votes
2answers
8k views
android: difference between ACTION_UP and ACTION_POINTER_UP
from the android doc alone i dont really understand the difference between ACTION_UP and ACTION_POINTER_UP.
http://developer.android.com/reference/android/view/MotionEvent.html#ACTION_DOWN
basically ...
1
vote
1answer
3k views
How to disable pinch in Android MapView
How can you disable pinch or multitouch functionality in an Android MapView?
11
votes
3answers
11k views
How to develop multi-touch applications in Java?
Anticipating the day when multi-touch interfaces become more pervasive, are there libraries in Java that can be used for developing touch applications? I'm looking for interfaces similar to ...
6
votes
1answer
7k views
Android multi-touch support
I wonder if is the Android multi-touch support reliable? I've read it suffers from some problems.
I also wonder, how can I define custom multi-touch gestures? Like: 3 fingers rotate or 3 fingers stay ...
4
votes
1answer
3k views
How to perform zoom in/out ,rotation together in Android
I want to apply drag,zoom in/out,rotate using multitouch to two images .one
image is placed on the top of the other. after applying these action
Create a image
from above two images after
...
12
votes
2answers
13k views
Detecting pinch in Android
I would like to handle pinch events in my Android application to zoom in and out.
I believe Android 2.0 has multi-touch functionality, and heard that Android 1.6 might or might not support it ...
3
votes
7answers
4k views
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 ...
21
votes
4answers
3k views
Extending Functionality of Magic Mouse: Do I Need a kext?
I recently purchased a Magic Mouse. It is fantastic and full of potential. Unfortunately, it is seriously hindered by the software support. I want to fix that. I have done quite a lot of research and ...
47
votes
5answers
20k views
Android Multitouch - Possible to test in emulator?
I recently discovered that the Android 2.0 SDK supports multitouch through new functions in the MotionEvent class. You can specify a pointer index when retrieving touch properties, and in cases where ...
12
votes
5answers
6k views
When does a touchesBegan become a touchesMoved?
When you drag a finger across the iPhone touchscreen, it generates touchesMoved events at a nice, regular 60Hz.
However, the transition from the initial touchesBegan event to the first touchesMoved ...
4
votes
2answers
743 views
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 ...
2
votes
1answer
1k views
Getting the number of touch points supported
I know that the number of touch points supported is different from device to device, but is there a way through the API or through code to get that number for the device?
18
votes
2answers
8k views
UIPinchGestureRecognizer position the pinched view between the two fingers
I successfully implemented a pinch a zoom of a view. However, the view doesn't position itself where I wished it to be. For the stackoverflowers with an iPad, I would like my view to be centered like ...
9
votes
2answers
2k views
Capturing all multitouch trackpad input in Cocoa
Using touchesBeganWithEvent, touchesEndedWithEvent, etc you can get the touch data from the multitouch trackpad, but is there a way to block that touch data from moving the mouse/activating the ...
5
votes
3answers
3k views
Android : Multi touch and TYPE_SYSTEM_OVERLAY
I am trying to get multiple touch events on a system overlay view, but am only receiving the MotionEvent.ACTION_OUTSIDE event.
Is there any possible way of getting multiple touch events on a system ...
8
votes
5answers
6k views
pointerIndex out of range Android multitouch
I have a touch event exception that is causing my game to crash on tablets (or more specifically, honeycomb)... My game works fine on my phone and I haven't heard of this happening to anyone that ...
9
votes
3answers
2k views
android: how can I verify, that device support multitouch?
How can I verify, that device support multitouch event? If device have resistent display, multitouch is not possible. Is that way to find out, what kind of display is in device, or if device support ...
6
votes
3answers
2k views
Is there a way to trigger gesture events on Mac OS X?
I want to trigger multitouch gesture events on Mac OS X. Is there a way to do this? Mouse or keyboard events can be triggered with CGEventCreateMouseEvent and CGEventCreateKeyboardEvent. Is there ...
8
votes
1answer
2k views
Android multitouch! hack anyone?
I have to let this slip for now as a purely academic issue but i would very much like to see a solution in near time.
Due to the way that Android handles multitouch you can (as i see it) only trap ...
2
votes
2answers
2k views
Android multitouch in supported devices
let's say I'd like to have an image view in my app with zoom
is it possible to add multitouch event listeners on phones that do support multi touch (API 7+), while on older phones show zoom buttons?
...
6
votes
3answers
5k views
How to simulate touch event?
I want to be able to invoke touch events without user interactions.
Is this possible?
2
votes
1answer
3k views
Programatically enable / disable multitouch finger input?
I have a multitoch-enabled tablet PC running Windows 7.
However, when using the stylus pen and getting too far away from the display, I often accidently hit it with my fingers which causes unwanted ...
1
vote
4answers
4k views
Android work multitouch button
Hi i want to create 2 Button and i want to multitouch ??
i tryed to do but no example in internet..
So if you got one can you share or can you give me opinion ??
my code is this but not support ...
0
votes
4answers
9k views
Disable gesture recognizer iOS
i'm developing a application for gestures recognizer for iPad and i want to disable the default gesture recognizer of the iOS. When i ask a way do disable the gestures recognizer is using my own ...
6
votes
2answers
8k views
Android multitouch?
As a developer, I tend to program first then research later. I was trying to implement a screen that would handle multiple user inputs. Basically map more than just one finger. I tried two things..
...
1
vote
2answers
134 views
ios sdk stop multitouch functionality
I have multiple buttons, if user touches 2 or more buttons and releases simultaneously, I want to give the action of just one button.
How can I do that.
Thanks in advance for your help..
1
vote
2answers
2k views
Detect multitouch with Ontouch listener Android
I currently have an imageview element that upon being touched, that tests if the action is an actiondown event, and if it is, it gets the coordinates of the touch with getraw(x or y) and then carries ...
1
vote
1answer
2k views
Touch events available in Safari?
A friend and I were discussing Mozilla's latest touch support and got on the question of what Safari provides for this. Searches seem to turn up nothing.
Do you know of anything that provides touch ...
13
votes
3answers
9k views
iPhone: Tracking/Identifying individual touches
I have a quick question regarding tracking touches on the iPhone and I seem to not be able to come to a conclusion on this, so any suggestions / ideas are greatly appreciated:
I want to be able to ...
11
votes
5answers
23k views
How to do pinch gestures on the iPhone?
How does one implement pinch gestures on the iPhone? I'm familiar with using touch events on the iPhone but I'm extremely lazy and don't want to re-invent the wheel for something as widespread as ...
6
votes
2answers
3k views
How to code for multitouch
So I'm developing an application that must handle multitouch. Basically I want single touch for rotating ( this is no problem ). And multitouch for scrolling.
I have the basic code in, but I'm ...
5
votes
3answers
2k views
Is there a 3rd party library for Android Pinch Zoom
Does anybody know whether there's a 3rd paty (or built in) library that helps in detecting and handling a pinch zoom event?
Basically what I'm looking for is some class that takes coordinates from a ...
4
votes
1answer
5k views
How to webview swipe gesture detect with multitouch zooming enabled withing a flipper
So is there a way for a webview control to detect a swipe while capable of doing multitouch zoom and having build-in zoom controls?
3
votes
1answer
8k views
How do i handle touch events properly in android?
Scope of the project
When a user touches the Android screen with two fingers, draw a "Frame" at each touch location with a "cursor" for each frame. Each frame is a custom slider that the cursor will ...
2
votes
2answers
6k views
Multi-touch detecting & differentiating - Cocos2d for iPhone
I would like to know how to detect and differentiate between touches in a multi-touch view. I have read about a "hash" code, but I don't understand how to use it. I want to know when two of my ...
7
votes
2answers
4k views
Testing Windows 7 multitouch on a dev machine without multitouch?
Is there a way to test the multitouch capability of an application using a non-multitouch enabled machine? I'd like to simulate user input for zoom, scaling and rotating during runtime.
This is for ...
5
votes
1answer
367 views
Pressing multiple buttons simultaneously
In my WP 7.1 app I have a page with multiple buttons.
I noticed that while any one button is being pressed, no other button can be pressed.
How can I overcome this? I need to be able to allow users ...
11
votes
4answers
1k views
multiple touches: touchend event fired only when a touchmove occurs
I would like to add some multitouch features to my javascript application when it is accessed from an ios device (and maybe android later).
I want to provide a shiftkey-like functionality: the user ...
11
votes
4answers
10k views
How to test multi-touch in Android Emulator [duplicate]
I'm trying to use multi-touch in an Android 2.0 app. How can I simulate this with an emulator using Eclipse? I can only seem to get the mouse to do one touch at a time.
3
votes
1answer
891 views
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?
...
3
votes
1answer
3k views
Android multitouch: ACTION_UP not always called?
I have developed an Android application that is handling multitouch in a view. I basically track the several MotionEvents that can occur like ACTION_UP, ACTION_MOVE, ... My overwritten onTouch method ...
1
vote
2answers
857 views
How is google maps (web app) scaling so smooth on the iphone/ipad with the gesture/pinch?
If you have used the Google Maps web app on your iphone or ipad you know what i am talking about. You can't see my fingers in this screen grab, but this is mid-pinch (if you will) zooming out. The ...