touchscreen

Does Google Maps API V3 support touch event?

回眸只為那壹抹淺笑 提交于 2019-11-27 07:51:48
问题 We are experiencing an issue related to GoogleMaps. The issue is mainly related to touch screens. We were trying to resolve the issue, but so far no success. We found in this article that the Google Maps API V3 does not supports touch event? Is this is true or false? UPDATE This issue was handled in the bug https://issuetracker.google.com/issues/35824421 and was solved in version 3.27 of Google Maps JavaScript API in December 2016. 回答1: In my experience, the mousedown , mouseup , dragstart ,

Is there a Java API for touching devices such as tablets?

↘锁芯ラ 提交于 2019-11-27 05:44:37
问题 I'm a java developer and I love this techonology. However, in my advisor next research we are going to use extensively touch-screen devices on Windows . This is a problem for me, because I'm used to programming on Linux and with Java. The question is, is there an API for Java for touchscreen devices? If yes, is this API good/mature? The need for a Java API is not only because I love Java but because I don't know how to program specifically to Windows, that is, I've never used Win32 or .NET.

Get the co-ordinates of a touch event on Android

拟墨画扇 提交于 2019-11-27 04:04:16
I'm new to Android, I've followed the hello world tutorial through and have a basic idea of what's going on. I'm particularly interested in the touch screen of my T-Mobile Pulse so just to get me started I want to be able to write the co-ordinates of a tocuh event on the screen, so say the user touched the co-ordinate 5,2 - a textview on the screen would display that. At present I have a simple program that just loads an xml file which contains the textview I intend to write the co-ordinates in. Thank you in advance, I did Google for help and searched stackoverflow but everything I found

handle both mouse and touch events on touch screens

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-27 02:16:39
问题 I'm writing web application which should support both mouse and touch interactions. For testing I use touch screen device with Windows 7. I've tried to sniff touch events in latest Firefox and Chrome canary and got the following results: On touch Firefox fires touch and corresponding mouse event. Chrome fires touchstart/mousedown , touchend/mouseup pairs, but mousemove fired in very strange manner: one/two times while touchmove . All mouse events handled as always. Is there any way to handle

How to get Coordinates of Touchscreen Rawdata using Linux

二次信任 提交于 2019-11-27 01:40:49
问题 wie have a 3m microtouch display. Its connected to my debian system via usb and recongnized as human interface (hid). I am trying to access and push realtime information... if its getting touched I want to know where (x,y) and pipe it throught netcat to another host. Unfortunately I am only able to get raw data using cat /dev/input/event2 | hexdump or evtest You get hexcode that seem nowhere documented... Does anybody have a clue how to get those information? There must be a way to extract it

Simulating mouse input programmatically in OS X

爱⌒轻易说出口 提交于 2019-11-26 23:48:29
问题 Is it possible to simulate the actions of a mouse from a program in OS X? Specifically, the short version is that I'm trying to simulate a touchscreen using two webcams. So assuming I can get X,Y positions, can I send information to the OS as a mouse movement or click? Edit- Or if it's particularly easy in another operating system I'd be willing to consider that. 回答1: Yes, it is possible. You can use the Quartz Event Services to simulate input events. Assuming C, I wrote this quick example:

How can I make a jQuery UI 'draggable()' div draggable for touchscreen?

时光毁灭记忆、已成空白 提交于 2019-11-26 21:14:21
I have a jQuery UI draggable() that works in Firefox and Chrome. The user interface concept is basically click to create a "post-it" type item. Basically, I click or tap on div#everything (100% high and wide) that listens for clicks, and an input textarea displays. You add text, and then when you're done it saves it. You can drag this element around. That is working on normal browsers, but on an iPad I can test with I can't drag the items around. If I touch to select (it then dims slightly), I can't then drag it. It won't drag left or right at all. I can drag up or down, but I'm not dragging

Is it possible to let my c# wpf program know if the user has a touchscreen or not?

放肆的年华 提交于 2019-11-26 17:14:33
问题 I've got an login application that has a swipe system that people only can use when they have a touchscreen. They can login by swiping their personal pattern swipe code. Is it possible to check in C# or WPF if the user has a touchscreen? Even when he isn't using touch on it at that time? 回答1: Within C# code to find out if a touch screen exists (doesn't check if its a single or multi-touch device though) by the using System.Windows.Input namespace in PresentationCore . public bool

How to use ADB to send touch events to device using sendevent command?

∥☆過路亽.° 提交于 2019-11-26 16:59:55
I am trying to send touch events to a device using AndroidDebugBridge, so that I can do some basic automation for UI tests. I have followed the discussion in LINK . I am able to use sendevent to simulate touch on emulators, but unable to do the same on a device. Like in above link the emulator seems to send out 6 events for each touch ( xcoord, ycoord, 2 for press,2 for release) and it was easy to use this information to sendevents, but a getevent for the touchscreen for a device seems to generate far too many events. Has somebody managed to send touch from ADB to a device? Could you please

Show & hiding the Windows 8 on screen keyboard from WPF

别说谁变了你拦得住时间么 提交于 2019-11-26 16:35:44
问题 I'm writing a WPF application for a Windows 8 tablet. It's full windows 8 and not ARM/RT. When the user enters a textbox I show the on screen keyboard using the following code: System.Diagnostics.Process.Start(@"C:\Program Files\Common Files\Microsoft Shared\ink\TabTip.exe"); This works fine however I don't know how to hide the keyboard again? Anybody know how to do this? Also, is there any way I can resize my application so that focused control is moved up when the keyboard appears? A bit