Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detecting touch area on Android

Tags:

android

Is it possible to detect every pixel being touched? More specifically, when the user touches the screen, is it possible to track all the x-y coordinates of the cluster of points touched by the user? How can I tell the difference between when users are drawing with their thumb and when they are drawing with the tip of a finger? I would like to reflect the brush difference depending on how users touch the screen, and would also like to track x-y coordinates of all the pixels being touched over time. Thanks so much in advance for any help.

like image 201
HappyAppDeveloper Avatar asked Apr 04 '12 17:04

HappyAppDeveloper


2 Answers

This would be very tricky primarily because every android phone is going to behave differently. There are some touch screen devices that are very, very sensitive and some that are basically "dull" by comparison.

It also sounds more like you are wanting to track pressure - how hard is the user pushing on the screen - which is actually supported on android devices.

I think some of your answer may be found by monitoring all of the touch events - in practice, most applications ignore a great number of events or perform some kind of "smoothing" of the events since there is literally a deluge of touch events when the user is manipulating the screen. Doing this may negatively impact your applications performance though.

I would recommend that you look into pressure sensitivity and calculate a circular region around the primary touch point based on pressure, then build your brush around that.

Another idea would be to incorporate more of a gesture approach to what you are trying to do - for example, visualize touching the screen with the tip of two fingers together (index and middle) and rolling the middle finger around the index finger or simply moving the middle finger up and down in relation to the index finger. Both fingers would be moved together for painting. This could be used to manipulate drawing angle on the fly or perhaps even toggle between a set of pre-selected brushes or could change brush size on the fly as you are painting.

Some of the above ideas I would love to see implemented - let me know when you have your app ready.

Good luck! Rodney

like image 62
Rodney Barbati Avatar answered Nov 17 '22 18:11

Rodney Barbati


If you have a listener on your image it will respond that there was a touch within that bounding box, basically.

So, to get what you want, you could, but, I would never do this, create a box around every pixel, or small group of pixels, and listen for a touch.

Wherever you get a touch, it may fire off an event, then you can react accordingly.

I can't think of any other solution that will give you each pixel that a person touched, at one time.

You may want to read up on multitouch though, as there are some suggestions in here that my help you:

http://android-developers.blogspot.com/2010/06/making-sense-of-multitouch.html

like image 2
James Black Avatar answered Nov 17 '22 20:11

James Black