0
votes
0answers
2 views

JApplet KeyListener

So I have an applet that I created, and it works on certain computers, but not others. It seems as though the Applet will not sense the key events that are happening. Is there a special way to set the ...
-1
votes
1answer
46 views

How can i record each keyboard input in text file?

I would like to record every keyboard inputs into text file without using keyListener How can I achieve this?
1
vote
1answer
56 views

LWJGL holding a key pressed

So basicaly what im trying to do is using LWJGL now making my player move in the game. The player is currently moving but he doesnt keep mooving while you are holding the button.. public void ...
0
votes
1answer
72 views

create a thread that will write each character typed using keyboard

I am trying to create a thread that will create a text file and will write each and every character typed on computer using key listener but i am not getting how do i append the created file with next ...
0
votes
3answers
85 views

setOnKeyListner not working for EditText

Here i have a fragment and it contains an edit text I want to hide the soft keyboard on Enter Key Press. I tried this. but it seems my onKey Method is not called. i have checked through Log ...
-4
votes
1answer
61 views

What is the difference between KeyListeners and KeyBinders? [closed]

Title pretty much sums it up. I'm new to using the keyboard with programs, and want to know what makes them different, which one is easier to use, etc.
0
votes
1answer
86 views

JTextfield should trigger all keyboard inputs

I want to trigger all keyboard inputs (also strg, alt or tab) in a JTextField. super.addKeyListener(new KeyListener() { @Override public void keyTyped(KeyEvent arg0) { ...
0
votes
1answer
319 views

Java key listener press once

I have a key listener in my program and for most keys I want the user to be able to hold down a key. However the key for screenshots I want the user to be able to hold down the key yet it only takes ...
0
votes
1answer
65 views

Define number of handled key events per second Android

I need to limit number of key events handled per second. The idea is, because in my app users can use keyboard. When user hold down on right navigation button, for example. I don't want to handle ...
0
votes
1answer
352 views

Keyboard Repeat Delay turned on unexpectedly

I'm relatively new to java and I'm making a game that involves moving an object with the arrow keys (the longer you hold the faster it goes). Here is the code for these movements (I'm using a ...
0
votes
2answers
202 views

Adding Keyboard support to Java Swing application regardless of Focus

I have a JFrame with multiple panels that accumulates in a fairly complex Swing UI. I want to add Keyboard support so that regardless of component focus a certain Key press, for example the [ENTER] ...
0
votes
0answers
89 views

keyPressed event being invoked after key is released

Platform: JCreator v5.0 LE I have an object that moves and stops by looking at an integer that is one of three values: -1, 0, or 1. -1 is backwards, 0 is stop, and 1 is forwards. the keyPressed ...
-1
votes
1answer
248 views

KeyListener stop working with Action or Mouse Listenter?

I want to add KeyListener to get input through keyboard, so i add keyListener and implements its methods, but when i run that and press any key it works but in console it write something like this: ...
1
vote
2answers
196 views

java key input doesn't work

I am writing a simple java snake-like game, and I ran into a problem even before I actually got to making the game. I can't seem to get input from the keyboard for some reason. My current code is: ...
2
votes
0answers
286 views

Samsung Galaxy Tab 2 : 10.1 - Can't pick up “Enter”

Ok, so this is silly. I am using a textbox with the input type textPassword. On the Galaxy Tab 2 : 10.1 : I can not pick up the "Done" button as in an arrow pointing down then turning left. I am ...
2
votes
1answer
310 views

Using Java, How to detect keypresses without using GUI components?

Using Java, is it possible to detect user actions, such as key-presses, mouse-button-presses, and/or mouse's screen location, without the use of GUI elements? If it is, how could I implement it? ...
1
vote
3answers
836 views

How to listen the keypress in the soft keyboard?

I need a listener to identify the keypress in the soft keyboard/on screen keyboard. I tried with addtextchangelistener textwatcher but this one give the good result but it shows the change also when ...
3
votes
3answers
702 views

KeyEvent characters

I have a question about a KeyListener. When I get the KeyEvent and do a getKeyChar() I'm tyring to compare to and * asterisk and I was going to use one of the KeyEvent.VK_ defines which works for a ...
0
votes
3answers
578 views

Weird behavior of keyboard events in Java

When I press "Delete" button on the keyboard, program gets three events - KEY_PRESSED, KEY_TYPED, and KEY_RELEASED. The problem is, in KEY_PRESSED and KEY_RELEASED, parameter "keyCode" is set, but in ...
0
votes
0answers
1k views

Android: How can I handle KeyDown and KeyUp events on regular keyboard letters

I'm using a hardware keyboard on the Android device I'm testing my program with. I tried setting a "KeyListener" on an EditText, but regular keys (such as "k", "p", and punctuation "." won't trigger a ...
0
votes
1answer
182 views

How to listen to press more buttons on the keyboard?

I on the keyboard a lot more buttons, and I really need to listen to push the buttons (multimedia play, stop ..). How do it? And I would like to catch the event, even when the window is minimized.
0
votes
1answer
1k views

OnKeyboardActionListener android keys

I'm trying to implement a way to know when there is a press and a release of a key on a soft keyboard. I have used the onKeyListener to get the down and the up of the key, but the problem with that ...
1
vote
1answer
535 views

Java Interface for Multimedia Keys

Anyone has experiences about interfacing with multimedia [or Fn Function] keys in Java? There seems to be an incomplete discussion regarding multimedia buttons in Java here. There is also a library, ...
4
votes
2answers
3k views

Capture all keyboard events using VB.Net

I've written an app with a simple textbox which attempts to identify a user from their typing habits (interval between key presses, duration key is held, time between key strokes ie a->s is quicker ...
1
vote
1answer
1k views

How do I have YAHOO.util.KeyListener disabled when an input element is focused?

I have a MenuBar setup with YUI's MenuBar widget, and I have a YAHOO.util.KeyListener attached to 'document' to get quick keyboard access to the menus and submenu items (e.g. 's' to open the Setup ...