A KeyListener is an implementation of the Observer pattern which is created specifically for handling keyboard events.

learn more… | top users | synonyms

0
votes
2answers
84 views

Should input listeners be synchronized?

My sample code posted below shows two classes. One implements KeyListener and the other implements Runnable and is running in an infinite loop sleeping every 20 ms. When a key is pressed the keyChar, ...
-2
votes
4answers
431 views

How to create a KeyEvent

When i create the KeyListener, it requires the following fields: public void keyPressed(KeyEvent e) { } public void keyReleased(KeyEvent e) { } public void keyTyped(KeyEvent e) { } When i ...
0
votes
1answer
56 views

OnKeyListener OnKey repeats action

I'm trying to modify the action when the user clicks the "DEL" key (on the screen keyboard), here's the code ed.setOnKeyListener(new View.OnKeyListener() { @Override public boolean ...
1
vote
2answers
122 views

Convert KeyEvent.VK_SPACE to a String space

How can I convert KeyEvent.VK_SPACE (which is an integer) to an actual space? String space = convertKeyEvent(KeyEvent.VK_SPACE); System.out.println("Space=" + space + "."); This should output ...
1
vote
1answer
100 views

GroupLayout makes action listener loses focus

I've recently started to work with the java GUI -most properly Swing. Now I got this problem I just can't get around. I want to dispose a game board that extends JPanel and implements ActionListener ...
0
votes
1answer
164 views

Java KeyListener - Key Released Firing When Key is Held Down

I'm trying to set up a KeyListener to fire on KeyPressed and KeyReleased. When I hold down a key, released if fired immediately after pressed, for example, if I hold down a key I get this output from ...
0
votes
1answer
71 views

java how to delete the contents of JTextPane as user types?

I want to delete the contents of my JTextPane as the user types, I mean JTextPane.addKeyListener(new java.awt.event.KeyAdapter() { public void keyTyped(java.awt.event.KeyEvent evt) { ...
1
vote
3answers
183 views

KeyTypedEvent KeyEvent's KeyCode is always 0?

I have a Java Swing application in the NetBeans IDE. I made a form and attached a KeyListener to my various controls as such: jButton1.addKeyListener(new java.awt.event.KeyAdapter() { ...
0
votes
2answers
35 views

How to restrict KeyEvent capture speed

I'm making a fairly basic top down 2D shooting game (think Space Invaders) but I'm having an issue with KeyEvent processing too many events per second. I have this: if (e.getKeyCode() == ...
0
votes
1answer
85 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) { ...
1
vote
3answers
218 views

Allow characters storage on JTextField only if are numbers

I want to filter the key that are pressed on JTextField. I want that only numbers are allowed, and if other character are pressed it remove it or don't allow the storage on the text field. I'm ...
2
votes
1answer
145 views

How to use keyListener in Java applet

I have absolutely no idea on how to use KeyListener in an applet (okay, I've got an okay idea). I know it has something to do with setting focus on the applet, but I have no clue as to how to do that. ...
1
vote
1answer
96 views

Disable a KeyTyped event based on its type

When I press any key I receive 3 events: KeyPressed, KeyTyped and KeyReleased. For KeyPressed and KeyReleased it knows where the key came from e.g. the KeyPad. However, for the KeyTyped event it seems ...
0
votes
1answer
63 views

Multiple KeyEvents Occuring with KeyAdapter when entering only one character

Adding a KeyListener class to a org.eclipse.swt.widgets.Text class. When I enter 'a', I get multiple keyEvents. I'm only expecting one keyEvent. Why is that. text.addKeyListener(new KeyAdapter() { ...
3
votes
3answers
169 views

Why is my oval not moving Java

i was writing a little snake like game and i was implementing the key event listener, so it listens when the arrow keys are pressed it increment or decrement the position of the oval in the frame. ...
-1
votes
1answer
80 views

Why won't my character move?

I have my code. public void keyPressed(KeyEvent e) { if (e.getKeyCode() == 37){ personx -=2; } if (e.getKeyCode() == 38){ persony -=2; } if (e.getKeyCode() == 39){ ...
2
votes
6answers
175 views

Overriding many methods of many classes in one class

public class EventController extends MouseAdapter implements ActionListener { private EventModel model; private EventView view; String tableClick; Events events; /** ...
0
votes
0answers
41 views

Java Keylisteners and Key Bindings Speed Comparison

I'm currently working on a simple software synthesizer using the user's keyboard to control the pitch like a "piano." Problem is, I'm using a key listener and a massive switch statement for every key ...
2
votes
1answer
79 views

Java KeyListener event loops until releases key

Im working on a simple platformer in java and am having trouble with the jumping of the player. What is happening is that if I hold down the spacebar the player just keeps going up. I need some way to ...
0
votes
1answer
38 views

Adding KeyStroke to JCheckBox

I want to add KeyStrokes to group of CheckBoxes ,so when user hits 1, keystroke will selected / deselected first JCheckBox. I have made this part of code ,but its not working, can somebody point me ...
1
vote
1answer
110 views

KeyListener is not triggered when releasing key after multiple keys have been pressed simultaniously

I am programming a small application that uses key listeners. When a particular key is being pressed a timer is started and when that key is being released, the timer is stopped. Now this works ...
0
votes
1answer
86 views

Can't receive keyboard input in Java

I am trying to get some basic keyboard input functionality like the arrow keys. However, nothing i try seems to work, i've been using the KeyListener interface, the JPanel that checks for input gets ...
-2
votes
1answer
36 views

Code partly freezes after trying to click on JFrame [closed]

Okey straight to the point. The problem I'm encountering is this: I have a small game, which runs on JFrame with Canvas. JFrame adds KeyListener. Everything works properly, but when I click on my ...
0
votes
1answer
650 views

KeyListener in Textfield not firing when press enter

I'm trying to make a program that can converts fahrenheit to celcius in java. In program i have 2 Labels and 1 TextField for input. I want to make convert temperature when user types the temperature ...
0
votes
1answer
316 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 ...
1
vote
1answer
316 views

Key Listener doesn't work in a JFrame when traversing from another JFrame

I have 2 classes. One extends canvas and inside creates a jframe and add the canvas to that jframe and add another keyadapter class to receive key events. I also have main function to test the code. ...
0
votes
1answer
116 views

Get all keys from KeyEvent to map

Is there a way to get all Keys from java.awt.event.KeyEvent to map? I tried using reflection like: for (Field f : KeyEvent.class.getDeclaredFields()) { try { ...
-3
votes
1answer
156 views

Java - Program with KeyListener isn't working [closed]

Main problem: When I created a norwegian calculator using the KeyListener, it didn't work properly. I've added a call to the JFrame's addKeyListener() method and I've implemented the KeyListener ...
1
vote
2answers
118 views

JPanel inside a JPanel don't listen to KeyListener

at the moment i am making a level editor in Java. The level is in a JPanel. Inside this JPanel i put the game elements(Hero, enemy, tree, wall..)For every element i use the class.GameElement. public ...
1
vote
2answers
263 views

Class extending KeyListener not responding to key presses [duplicate]

Sorry about its being a duplicate - I was in a hurry when I wrote this, and didn't have time to check. Though I suppose it would have been faster, now that I think about it... Possible ...
0
votes
3answers
97 views

Menu button opening keyboard

I would like to know how the keyboard pops up on long press of the hardware menu button. I've read that key listeners aren't available in services. So, how exactly does the menu button trigger the ...
1
vote
2answers
229 views

KeyListener and MouseListener not working

Im working on making a simple Java game and had the great idea of separating my input handling to a separate class then the main game. I am having trouble getting my InputHandler class to actually ...
1
vote
3answers
76 views

Strange behaviour in KeyListener when using Clipboard

okay i tried to do a simple ctrl+c for my JTable, but when using the control button the whole row is copied, not the specified cell. how do i get the desired effect? public class ClipboardTable { ...
2
votes
0answers
112 views

Java SWT Key, MouseWheel Listener

I added a "KeyListener" to Shell for changing FullScreen or not. Also I added a "MouseWheelListener" to GLCanvas for changing its depth. But there is a problem that if I enable the KeyLisetner in ...
0
votes
3answers
1k views

MouseListener/KeyListener not working (JPanel)

I'm doing a little project that involves the mouse and key listeners in JPanel. Unfortunately, none of the methods are called when I use the mouse/keyboard. I have worked with JPanels/JFrame/JApplet ...
0
votes
2answers
377 views

Java Editable JCombobox Keylistener event for Enter key

I have editable JCombobox and I added keylistener for combobox editor component. When user press 'Enter key' and if there is no text on the editable combobox I need to display message box using ...
1
vote
0answers
182 views

Java listen key events without being in focus

i searched all over stackoverflow and found no good/complete solution to my problem. All i want is that my java app should stay minimized, but still read system key events. a smallest COMPLETE ...
0
votes
0answers
115 views

Android Key-listener for dial up screen

I'm a beginner in developing android applications, and I want to implement a key-listener for the dial up screen where I can detect a particular sequence of digits entered ('000' for example) BEFORE ...
2
votes
2answers
436 views

KeyListener - keyPressed called but KeyReleased not called

Without posting too much code, in short I have a KeyListener that is behaving funny I have a JPanel and I implement my KeyListener like this: keyboard = new KeyBoard(); // implements KeyListener ...
-2
votes
1answer
77 views

Java Swing Hangman game win/lost count doesn't work and keylistener is buggy [duplicate]

Possible Duplicate: Java hangman game with gui, problems with incrementing/decrementing numbers So the problem is that I suck at swing, have no idea how to work with the keylistener, which ...
-1
votes
1answer
49 views

Java - pressing a direction key and having it move smoothly

When I press a direction key to move the object in that direction, it moves once, pauses momentarily, then moves again. Kind of like how if I want to type ...
0
votes
1answer
201 views

Java KeyListener not responding after switching JPanels

I got a problem with the KeyListener not responding(due to not gaining focus) when I switch between JPanels. I have Google'd this and know that to fix this problem I need to use KeyBindings, but I ...
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 ...
1
vote
1answer
97 views

Adding/Removing from a JPanel

I am trying to make a basic map where pressing a button moves a character. I am using Netbeans and so far it's going smoothly! Except for trying to remove a JLabel from a JPanel and then add a new ...
-2
votes
1answer
322 views

multiple actions off one key press in java [closed]

I am trying to create a simple login system and i want the user to be able to proceed to the next part when they hit the enter button, and ive managed to get it working on the registration part, so ...
0
votes
0answers
182 views

Java Applet Key (apparently) loses focus after firing

I have a Java Applet that works totally fine in eclipse, but when I export it to a jar-file, embed it in a HTML and open it with Opera or Firefox, the Key Listener does not work properly. I've tried ...
0
votes
2answers
86 views

Simple KeyListener not working

I'm working on a really simple project in Java to try to understand how to use KeyListener. I've created a Main class and a KeyListener, MouseListener class. I want to get something to happen when I ...
0
votes
1answer
75 views

KeyListener working on emulator but not working on device

I'm having a problem with the keylistener on my android app. When testing on the emulator, it works great, but after exporting the APK and trying on my real device, it doesn't work anymore. I saw a ...
-1
votes
1answer
44 views

How can I raise an event when a key has been pressed which changed a value?

Okay, I'm kinda new to Java. My problem is this: I have a class called "Control". This class implements KeyListener and is able to read the keycodes. I also have another class called "Display". If a ...
1
vote
1answer
189 views

Keyboard input stops working in Swing application (a calculator) after clicking on a JButton

I'm making a calculator using Swing. So far I have created a GUI that consists of a JFrame with BorderLayout, and in its center I put a JPanel that has a JLabel (representing the screen of the ...

1 2 3 4 5 11