Touch-based interfaces have unique considerations that do not apply to other modes of input, and vice versa.

learn more… | top users | synonyms

47
votes
15answers
41k views

Windows version of the Unix touch command

I'm looking for a Windows port of the UNIX touch command. I don't want to install an entire MKS toolkit just for the one tool. Is there a native port available somewhere or a command in Windows that ...
33
votes
9answers
12k views

Optimize website for touch devices

On a touch device like iPhone/iPad/Android it can be difficult to hit a small button with your finger. There is no cross-browser way to detect touch devices with CSS media queries that I know of. So I ...
21
votes
2answers
8k views

Basic Drag and Drop in iOS

I want to have a view in which there are vehicles driving around that the user can also drag and drop. What do you think is the best large-scale strategy for doing this? Is it best to get touch events ...
16
votes
7answers
2k views

Tooltips in the era of touch

Tooltips are an incredibly useful interface paradigm to know an application. They are the mapping between the visual control and the application specific action associated to that control. the user ...
14
votes
2answers
1k views

Javascript zoom and rotate using gesturechange and gestureend

I am working on some touch events and gestures, I want to be able to zoom and rotate the object, I have successfully made it draggable but the gestures are giving me trouble. The gestures are working ...
12
votes
9answers
714 views

Detect whether browser has keyboard/arrow keys in web page

I have a full-screen game in HTML+JavaScript, which uses the arrow keys as primary controls. This cannot be used on keyboardless Android devices (I haven't tested on iOS), and even if the soft ...
10
votes
1answer
1k views

Sencha Touch - Map.Geo = null

I am trying to follow this simple tutorial on Sencha Touch http://dev.sencha.com/deploy/touch/getting-started.html I keep getting the JavaScript error: Uncaught TypeError: Cannot call method 'on' of ...
10
votes
7answers
15k views

Problem with cocos2D for iPhone and touch detection

I just don't get it. I use cocos2d for development of a small game on the iPhone/Pod. The framework is just great, but I fail at touch detection. I read that you just need to overwrite the proper ...
9
votes
3answers
5k views

Javascript Drag and drop for touch devices

I am looking for a drag & DROP plugin that works on touch devices. I would like similar functionality to the jQuery UI plugin which allows "droppable" elements: ...
9
votes
5answers
7k views

Why are touch events destroying my Android framerate?

I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen. While they're touching it, onTouchEvent is called ...
9
votes
3answers
7k 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 ...
8
votes
5answers
384 views

Detecting Touch from TOP/BOTTOM

I'm a beginer on IOS Development, I've developed a simple demo of detecting multiple touch by following this tutorial: It works fine, but my question is: when I try to start the touch from the ...
8
votes
1answer
432 views

How can a service listen for touch gestures/events?

I'm wondering how apps like SwipePad and Wave Launcher are able to detect touch gestures/events simply through a service. These apps are able to detect a touch gestures even though it is not in their ...
8
votes
1answer
404 views

How well supported is pressure sensitivity across Android devices?

I want to write an app that reacts to how much pressure is applied from the user's finger. Specifically, I want to use this to vary the thickness of a line being drawn. I'm happy with just reacting to ...
8
votes
1answer
5k views

Does jQuery preserve touch events properties?

While this code produces the expected behavior of "1" when touching the screen: document.getElementById('someNodeId').addEventListener('touchmove', touch, true); function touch(evt) { ...
7
votes
1answer
279 views

What is going on with jQuery UI Sortable on a touch screen device?

I am using jQuery UI Sortable. I am developing a mobile only website, so I looked around how to map touch events to mouse events for this to work, and ended up using some code by Oleg Slobodskoi. ...
7
votes
3answers
6k views

How to add a touch event to a UIView?

How do I add a touch event to a UIView? I try: UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, nextY)] autorelease]; [headerView addTarget:self ...
7
votes
2answers
510 views

Passing touch events to appropriate sibling UIViews

I'm trying to handle touch events with touchesBegan in an overlay to a parent UIView but also allow the touch input to pass through to sibling UIViews underneath. I expected there would be some ...
6
votes
2answers
112 views

Resize an HTML element using touches

Using nothing more than the jQuery lib; I am trying to resize an DIV when dragging it's right border. It works perfectly with a mouse but I can't make it work on a touch device. I think it's related ...
6
votes
2answers
302 views

ACS and facebook login -> display=touch is broken? [closed]

I'm using ACS to auth against Facebook. Before this week, I could add display=touch to the end of the URL ACS is providing. Now when I do this I'm getting a "HTTP 500 Internal Server Error". Any ...
6
votes
4answers
2k views

android: ViewPager and HorizontalScrollVIew

I have a HorizontalScrollView inside my ViewPager. I set requestDisallowInterceptTouchEvent(true); for the HorizontalScrollView but the Viewpager is still sometimes intercepting touch events. Is ...
6
votes
2answers
389 views

Android: GC_FOR_MALLOC caused by a lengthy touch event?

I've been reading around and looking into touchEvents, mainly because my GC is exploding when there is a lengthy touch/slide event OR many touch events. If I do not touch the phone it simply idles as ...
6
votes
5answers
2k views

Simulating touch events on a PC browser

I am developing an HTML application for the iPad. As such it utilizes touch events and webkit-CSS animations. Up until now I have used chrome as my debugging environment because of it's awesome ...
6
votes
1answer
7k views

Detect touch press vs long press vs movement?

I'm currently fiddling around with Android programming, but I have a small problem detecting different touch events, namely a normal touch press (press on the screen and release right away), a long ...
6
votes
2answers
1k 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 ...
6
votes
2answers
858 views

UIPicker detect tap / touch on currently selected row

Okay guys, I have a UIPickerView and I want to do something when the user TAPS the currently selected row. I have it working right now where if they tap a row which is NOT selected, it rotates to the ...
6
votes
4answers
4k views

How do I simulate a hover with a touch in touch enabled browsers?

With some HTML like this: <p>Some Text</p> Then some CSS like this: p { color:black; } p:hover { color:red; } How can I allow a long touch on a touch enabled device to replicate ...
6
votes
4answers
6k views

WPF supports touch or multi-touch screen?

I am wondering whether WPF on .Net 3.5 supports touch or multi-touch for laptop? Appreciate if there are some cool Demos to show the effect. I am using VSTS2008 + C#. thanks in advance, George
6
votes
1answer
4k views

How to get touch event on a CALayer?

I'm new to the iPhone SDK. Right now I'm programming with CALayers which I really like a lot – not as expensive as UIViews, and a lot less code than OpenGL ES sprites. I have this question: is it ...
5
votes
1answer
72 views

How can I check for real touch support on a browser

Today (or very recently) Chrome Beta updated to 17 for me and with it i noticed some funkiness in my web app. I noticed it was because a class was being added to the body element that normally only ...
5
votes
2answers
132 views

Drag drop on mobile devices using some code that translates event (code included), but normal events are not working

I am using the below code to allow for touch drag and drop on my website. However, while the parts of my code which have drag/drop functionality work, on an iPhone, I cannot scroll or move the page in ...
5
votes
1answer
368 views

Geting touch events (coordinates, MotionEvents, ect.) in a service

How do I get touch events like you can from an Activity using public boolean onTouchEvent(MotionEvent event)? There obviously isn't an onTouchEvent method to override in a service, so how can I go ...
5
votes
2answers
114 views

Accept touch without moving mouse?

I'm writing a joy pad emulator for my tablet for fun and for a challenge. I can touch buttons drawn on my form and have keypresses activate in another form. The problem is that many games (I'm testing ...
5
votes
2answers
919 views

Why doesn't this MotionEvent simulation work?

In one of the views in an exercise app, am trying to perform text selection programmatically. I am able to (programmatically) enter "text selection mode", which is visually indicated by ...
5
votes
1answer
2k views

Cocos2d handling touch with multiple layers

I've been busy for a few days trying to figure out how to handle touch in my Cocos2d project. The situation is a bit different as normal. I have a few different game layers that have items on it that ...
5
votes
1answer
1k views

Does the Windows Phone Internet Explorer Mobile 7 browser support touch events?

Android and iPhone support touchstart, touchmove, touchend, and touchcancel. Does the Windows Phone Internet Explorer Mobile 7 browser support these events or any analogous events?
5
votes
4answers
7k views

Touch and drag image in android

I am working on some example in which i want to drag the image corresponding to touch in Android. Does anybody have an idea about how I can do it?
5
votes
1answer
439 views

Triggering the “:active” pseudo-class on a touchscreen

I'm currently developing a JavaScript application which will be deployed on a touchscreen kiosk running Chrome in kiosk mode. I've noticed that when I use a mouse to click the buttons on the ...
5
votes
2answers
749 views

WPF: Is there a possibility to “route” ordinary mouse events to touch events in Windows 7

I'm currently developing a touch screen application using C# (.NET 4.0) and WPF for Windows 7. My problem is that the driver of the touch screen I have available at the moment only generates mouse ...
5
votes
1answer
480 views

Shorten the touch delay in a UIScrollView?

I'm looking to shorten the touch delay on a UIScrollView, but I don't want to use setDelaysContentTouches:NO; I still want there to be a slight delay but my users are complaining about it being too ...
5
votes
1answer
4k views

iphone sdk: finding the direction of scrolling in UIScrollView

I have a UIScrollView with only horizontal scrolling allowed, and I would like to know which direction (left, right) the user scrolls. What I did was to subclass the UIScrollView and override the ...
5
votes
3answers
2k views

iPhone OpenGL ES - How to Pick

I'm working on an OpenGL ES1 app which displays a 2D grid and allows user to navigate and scale/rotate it. I need to know the exact translation of View Touch coordinates into my opengl world and grid ...
5
votes
2answers
536 views

Inconsistency in modified/created/accessed time on mac

I'm having trouble using os.utime to correctly set the modification time on the mac (Mac OS X 10.6.2, running Python 2.6.1 from /usr/bin/python). It's not consistent with the touch utility, and it's ...
5
votes
3answers
77 views

[iPhone]A zone which user can't interact, why?

Plese refer to below image to get detail of my problem: This maybe relate to Status bar??? *Note: this is a full-screen application. My way to do this: 1. add "Status bar is initially hidden" ...
5
votes
4answers
577 views

Why can I 'touch' a write-protected file?

Why is it possible to touch a write-protected file? Shouldn't the following give an error? $ touch test.txt $ chmod a-w test.txt $ ls -l test.txt -r--r--r-- 1 name group 0 Jun 13 09:14 test.txt $ ...
5
votes
4answers
2k views

Objective-C/Cocoa: Proper design for delegates and controllers

Consider the following common situation: You have some MainView in your Cocoa application, loaded from a NIB, which is controlled by a MainViewController. Your MainView contains some controls, such ...
4
votes
3answers
57 views

What makes a web application a touch pad friendly application?

Designing a web application with ASP.NET MVC I asked myself how can I also please those people using a smart phone, ipad, etc.. (everything thats touchable...) and not only a desktop/notebook with a ...
4
votes
1answer
193 views

Multi-touch screen and WPF listbox

I'm using a cyclotouch screen overlay and need a drag and drop motion (i.e. finger down and move) on a listbox item to behave identically to a mouse drag and drop (i.e. click down, hold finger and ...
4
votes
1answer
246 views

Buttons inside ScrollView inside Gallery don’t respond to click

I have a Gallery with ScrollViews as child items. Scroll view can contain text, images and button inside of the scroll area. I need to make sure that the touch events are handled correctly and as ...
4
votes
5answers
347 views

How to determine if the client is a touch device

is there any nice and clean method or trick to find out if the user is on a touch-device or not? I know there is stuff like var isiPad = navigator.userAgent.match(/iPad/i) != null; but I simply ...

1 2 3 4 5 26