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)
Questions tagged [multi-touch]
1283 questions
-1
votes
1 answer
I don't understand one line of code |Multitouch|
private void dealEvent(int actionPointerIndex, MotioEvent event,
View eventView, int actionresolved) {
int rawX, rawY;
int location[] = { 0, 0 };
eventView.getLocationOnScreen(location);
rawX = (int) event.getX(actionIndex) +…

Tomasz Trela
- 1
- 2
-2
votes
1 answer
Multi-touch support for web browsers/web pages
Multi-touch seems to be gathering more and more references worldwide every day. Soon the prices will most likely drop, as there are already a good amount of companies investing in them. Now what I wanted to ask to stackoverflow is the following:
Is…

fmsf
- 36,317
- 49
- 147
- 195
-2
votes
1 answer
Multiclick (2 or more button click together)
I want to make an apps like swiftBraille so a blind people can text with braille keyboard (6 button). The problem is only 1 button that I can click at the same time. So, do you know how to make button can be pressed together to give an action?

Ridho
- 3
- 1
-3
votes
4 answers
On single touch getting multiple touch events
Actually i have a list view on touching the list view I will get a popup window . But when i touch on list i am getting multiple windows for single touch.…

mallika
- 1
- 6
-3
votes
1 answer
Easy way to keep the listeners working while touching the screen
Here is my scenario: a LinearLayout as the main layout of the Activity. The Layout contains an ImageView which has its own onClickListener.
What would be the easiest way to fire the ImageView listener while the user rests his finger on the screen.…

Alin
- 14,809
- 40
- 129
- 218
-3
votes
2 answers
How to precisely control touch events in a browser
I'm writing a mobile web page. I'd like to understand how to precisely control touch events. I can do stuff like see when a touch event starts and ends above an element, but managing what happens in between seems difficult.
I want a simple button…

B T
- 57,525
- 34
- 189
- 207
-4
votes
1 answer
Android Multitouch
I am developing an application in which I have 4 Buttons that, when pressed, valorize 4 different text boxes showing which one is pressed and which is not.
All inputs are given at the same time, hence I need to use multitouch.
I could not find any…

Vatsalya Yadav
- 7
- 4
-7
votes
1 answer
AS3 drawing movement path for object
So I want to create a game for a touch table and I am looking for a code that creates a path by drawing it. I want it for now with a mouse_down event so if anyone could help me out or tell me if it's possible that would be great. I have no code to…

Angelo de Vos
- 1
- 3