Top "Touch-event" questions

An event that is triggered when a user 'touches' a GUI component

how to programmatically fake a touch event to a UIButton?

I'm writing some unit tests and, because of the nature of this particular app, it's important that I get as …

ios iphone uibutton touch-event
Handling Touch Event in UILabel and hooking it up to an IBAction

Ok, so I have a UILabel created in interface builder that displays some some default text of "tap to begin". …

ios iphone uilabel interface-builder touch-event
Disable the touch events for all the views

What's the best way to disable the touch events for all the views?

android android-view touch-event
What is the difference between the click and tap events?

I am developing an app that runs on Android/iOS and desktop computers. Should I use the click or the …

jquery jquery-mobile touch-event
How to handle Touch Events on a Fragment?

I'm building an interface where I need to process touch events. In particular I would to be able to enable …

android android-fragments touch-event ontouchlistener
prevent touchstart when swiping

I have a scrollable list on a mobile device. They want people to be able to scroll the list via …

javascript jquery scroll touch touch-event
touchend event properties

If I catch all touchend events from mobile devices with: $(document.body).bind('touchend', function (e) { var touch = e.touches[0]; // …

javascript jquery touch mobile-safari touch-event
jquery touchstart in browser

As touchstart/touchend is yet not supported in most of the desktop browsers. How can I create touchstart event that …

jquery touch-event
Android drawing a line to follow your finger

What I want to do is to draw a line that will follow my finger. I've created a custom view, …

android drawing touch-event
onTouchevent() vs onTouch()

After many experiments with onTouchEvent and onTouch, I found that onTouch works everywhere you want (whether it is in activity …

android ontouchlistener touch-event