0
votes
1answer
21 views

Android onTouch called even when touch leaves View

Sanity check needed. If an ACTION_DOWN occurs within a View, that View's onTouch continues to get ACTION_MOVE events even when the point of contact leaves the View (!!!). Likewise, if the ...
1
vote
0answers
30 views

Android getX/getY interleaves relative/absolute coordinates

There are a lot of discussions of how MotionEvent.getX/.getY are "unreliable" (or other terms) and that we should use the Raw versions of these calls to get coordinates. On my Nexus 7, I have ...
0
votes
1answer
123 views

Android: MotionEvent's x and y pixel do not translate to image coordinates

I am using the getX() and getY() functions in MotionEvent to get the x and y positions of where the user touched the screen. I am also capturing images using the android camera. These images are ...
1
vote
2answers
40 views

How to define a tappable area defined by coordinates

I am writing a small iPad application that draws a shape from a list of coordinates. I would like to tap anywhere inside the shape and have some action occur (i.e. NSLog proving it worked). Does ...
0
votes
1answer
118 views

How to determine the true x y co-ord in a touch event (or mouse event) via javascript?

I've been working on touch events and have some code working quite nicely, until the canvas doesn't start at the top left corner. As soon as I add anything before it, the reported event is offset by ...
0
votes
0answers
15 views

Timer and Finding coordinates of touch

I am drawing on the screen and getting the coordinates using MotionEvent objects. I am trying to display the coordinates of the point every 10 milliseconds as i draw. When i run the code i get this ...
0
votes
0answers
77 views

Tracing all touch points on an android device within external application

I am designing an Adaptive Keyboard for Android. I want to retrieve some data of users typing text to subsequently analize it and extract information on user patterns. Is there a way to retrieve all ...
0
votes
0answers
127 views

Calculating touch coordinates of panned&zoomed view

I am currently working on a crossword puzzle, a port from an iOS app to Android. On iOS the visualization was pretty easy, I created a view with a tilemap (the crossword) and everything just worked, ...
0
votes
1answer
665 views

Moving image in circle with touch move

I want to move an image within a circle with my touch on move. I've been confused how to determine the coordinates circle boundaries when the finger moved. For example I want to move this image like ...
2
votes
3answers
3k views

Android (x,y) continuous touch (drag) coordinates

I'm new to android, and I've been trying for a while to find out how can I retrieve the coordinates of a continuous touch on the screen. for example have 2 vars (x,y) that update in real time as ...
0
votes
1answer
1k views

How to get Coordinates and PixelColor of TouchPoint in iOS/ObjectiveC

I need to get the Coordinates and PixelColor of a TouchPoint in Objective-C. Is this even possible? If yes I would be very interested in the how-to or any hint in the right direction. Thanx!!!
1
vote
0answers
4k views

Javascript ontouchstart/move/end - getting wierd results

I'm building this image gallery with swipe functions for tablets/smartphones. I was getting pretty odd results on the iPad so I decided to track it all the way back to the beginning and just print out ...
0
votes
1answer
375 views

how to have object continuously follow users finger coordinates? not draging object. object following finger

I have tried to use different methods but to no avail. So I come looking for a fresh point of view. I want to have a sprite follow the touch coordinates of the user. So if they dragged their finger ...
1
vote
2answers
700 views

Get UI element at the touch co-ordinates

I'm sure I've read that there is a way of getting co-ordinates on TouchDown in a WPF app and finding out what UI elements are 'underneath' this touch. Can anyone help?
1
vote
1answer
658 views

Touch coordinates in textview

I am using touch listener on text view. I can get the touch coordinates through motion event. Can I get the character index or near by character coordinates on which I clicked. Eg., Hello Android ...
0
votes
1answer
1k views

Android OpenGL ES add object on touch

I am building a small Android application which will add a cube on user's touch. The z depth is always -10, screen is always in landscape mode. This question seems to be asked many times, but I cannot ...
1
vote
2answers
1k views

Android touch input: Coordinates?

I'm new to Android and have a question rerading touch input (using OnTouchUp/Down/Move). What coordinate system does Android use? I get values ranging from 0,0 (top left) to 320,530 (bottom right) ...
2
votes
3answers
5k views

Obtaining Ipad touchstart coordinates

I would like to obtain the coordinates of a touch event on the ipad in javascript. How would I do this?
0
votes
1answer
511 views

Problems with touch position after scrolling in UIScrollView that contains a UITextView and UIImageView

I am trying to draw user's touches as they move above the screen over a UITextView, then save it as a UIImageView's image. Since I want the image to scroll together with the text in the UITextView ...
0
votes
1answer
900 views

how to get UItextview touch coordinate position

HI all i need to get the coordinate position from touching a view. The view i touch is UITextview. THe hierarchy of the view is UIViewController -> UITextview. I think i can use locationInView method ...
1
vote
1answer
2k views

how to get touch coordinates in an image then draw a markup icon and its content in a popover view

I would like to built an iPhone/iPad application to show large images (in a scrollView or something else which support dragging and zooming) that allow user to: Touch some where in the image to ...
12
votes
5answers
13k views

Get coordinates on tapping map in android

I'm trying to make something like this: I have a mapactivity and when the user taps the map it shows the coordinates of that location. I already overrided the onclick method but it isn't even called. ...
1
vote
2answers
2k views

mismatch of event coordinates and view coordinates in Android?

I've been trying to write a little application that recognizes custom events in Android: you hold your finger over a TextView for a certain length of time, and it changes color. I'm using the ...
-3
votes
1answer
265 views

CGrectContainPoints & Touches queries

Im getting straight to the point. I have static coordinates stored as array and i want to compare this coordinates with user touch. //touch handling UITouch *touch = [[event allTouches] anyObject]; ...
2
votes
2answers
5k views

Comparing Touch Coordinates

Is it possible to compare touch coordinates made by the users on the UIView to the one store in a plist or txt format? The argument looks like this; if (user touch coordinate == touch coordinate ...