Questions tagged [stylus-pen]

Stylus pen is a pen-shaped instrument that is used to input commands to a computer screen, mobile device or graphics tablet.

78 questions
0
votes
0 answers

Why isnt stylus input detected on my android screen

I have a use case in my current android application that supports free hand annotations on pdf documents. I want to allow my users to create freehand annotations using either their finger or a stylus. i have followed this codelab, however when i try…
Hector
  • 4,016
  • 21
  • 112
  • 211
0
votes
0 answers

How to implement Stylus Hover Pointer in AOSP?

I am very new to AOSP and I want to implement Stylus Hover Pointer Code like it is in Samsung S-Pen. I did explore on the native code and was not able to make any progress as most of the code was related to touches. How can I incorporate the HOVER…
anonymous
  • 1
  • 2
0
votes
1 answer

Javascript mouse tracking speed

I was working on a tablet PC using zoho notebook (http://notebook.zoho.com) earlier today and noticed that stylus input is not as accurate or smooth as something like say, OneNote. It seems like the functionality is done in javascript, so my…
intervigil
  • 101
  • 1
  • 5
0
votes
0 answers

WPF application is double typing when 'EnablePointerSupport is set to true in app.config with 'DisableWPFTabletSupport'

I am trying to enable PointerSupport in my C#/WPF application. After crawling through the web, I found a solution from MSDN, which suggested adding the below line to the app.config' runtime section.
0
votes
0 answers

Create a WPF RawStylusInput event?

I have a custom hardware device, which reports some coordinates through custom API. What I wanted I want to show hardware coordinates on WPF as ink, in real-time. My thoughts Reading Creating an Ink Input Control, I think translating hardware…
Dia
  • 851
  • 1
  • 15
  • 35
0
votes
1 answer

Algorithm to predict pen/mouse input

I'm looking for an appropriate algorithm that reliably predicts input coordinates given by a digital stylus (e.g. Surface Pen). In my application, I'm given the coordinates of the input as x and y coordinates on the screen (together with their…
reckless
  • 741
  • 12
  • 53
0
votes
1 answer

How can I work around strange S Pen bugs with the spinner?

When using a Spinner with all default settings, I found some weird bugs when using the S Pen: If you open the spinner and hover the S Pen at the bottom of the list, so it scrolls to the bottom, and then lift the S Pen up (so that the "hover circle"…
Adam Burley
  • 5,551
  • 4
  • 51
  • 72
0
votes
0 answers

Identify stylus barrel button (win32)

I am creating an application that uses the tablet API for windows and so far I was able to capture the input of the stylus succesfully. I am able to handle the movement, stylus down and up events and pressure. What I am still missing is the ability…
TheHube
  • 752
  • 1
  • 10
  • 23
0
votes
1 answer

How do I get pen pressure values in Unity (using S Pen on Android)?

I've looked everywhere and there's no actual examples or tutorials regarding using tablet pens with Unity. I tried using the GetTouch function I found on a forum just to see if that would work: float pressure = Input.GetTouch(0).pressure; then…
KeepCool
  • 497
  • 1
  • 6
  • 24
0
votes
1 answer

Stop ImageButton tooltip from appearing on hover through a fragment

Currently I observe a strange behavior of showing a tooltip "through" a fragment and I have no idea how to get rid of it. Any idea or hint would be appreciated! I have an ImageButton with some contentDescription: …
mspnr
  • 416
  • 4
  • 12
0
votes
1 answer

Capture pen strokes using styluspoints

I am trying to use this to capture inkstrokes. When I try to run this code, it says missing assembly reference error. I searched over the internet and found it should work on using System.Windows.Ink namespace, but it isn't working. Any help will be…
SamD
  • 41
  • 6
0
votes
0 answers

Compiling application using RTSCom / Windows Pen API with mingw application

I'm working on a GTK+ note taking application that heavily uses the stylus as an input. The stylus support in GTK+ is sadly really bad on Windows. (i.e. only Wacom pens are detected, excluding Surface devices). I'm currently trying integrating the…
Georg Friedrich
  • 183
  • 2
  • 12
0
votes
1 answer

pen sdk SpenSurfaceView initiate androidruntime error

I'm trying to use the samsung spen sdk pen-v5.1.0_full.aar. The .aar file is put under /libs and added to the dependencies in build.gradle file. I can initiate the spen fine (from com.samsung.android.sdk.pen.Spen), I can also initiate a…
Lumi Wang
  • 73
  • 3
  • 10
0
votes
1 answer

Disable Stylus Gestures for WinForm

I need to disable all stylus gestures for a winform. I want the stylus to function normally (i.e. basically as a mouse substitute) but the stylus gestures are majorly in the way. Ideally, the gestures would only be disabled for a specific form, but…
Harald
  • 141
  • 1
  • 9
0
votes
1 answer

Stylus pen not firing events for InkCanvas in Windowss 10

I have a Dell Latitude 5285 with a paired Dell Active Stylus (PN556W). I was working on a UWP test app for trying new things where I happened to notice the Stylus does not kick off any events tied to an InkCanvas. If I use my finger, the events are…