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

learn more… | top users | synonyms

4
votes
1answer
1k views

What does KeyListener do exactly?

If I'm right, there is a bug that when the locale says the decimal point is comma (as in Germany or Italy), Android's numeric keyboad does not accept entering commas. It still only accetps dots. I ...
2
votes
0answers
115 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 ...
2
votes
0answers
61 views

In GLSurface, KeyListener does not work with Soft Keyboard from InputMethod?

I hava a GLSurface, a KeyListener and TouchListener, I added the listeners to the suface and when the user click on the screen open the soft keyboard using this code: InputMethodManager ...
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
0answers
419 views

Problems With MouseListener

I'm writing a game in java. The problem here is I wrote my game to run in a JFrame, not thinking that i would want to add menus and a results screen and all that good stuff. The game itself runs great ...
1
vote
0answers
44 views

KeyPressed and KeyReleased does not work correctly

I have the following code in a game I am programming: public void keyReleased(KeyEvent e) { int key = e.getKeyCode(); if (key == KeyEvent.VK_SPACE) { doIShoot = false; } } public ...
1
vote
0answers
14 views

Can't get keyListener to work while Timer is running

Hello people of stack overflow, my program has a driver class Frogger(), a JPanel class that calculates everything, pulls together all the necessary panels, and implements keyListener called ...
1
vote
0answers
27 views

How to unhide a program from tray, inserting a key combination?

I have a program in tray, and I want it to appear when I enter a key combination, not Alt + Key or Ctrl + Key, but something like a password, an entire string. What I have to use? KeyListener or ...
1
vote
0answers
104 views

Java Multiple key presses and release

I've tried searching how to handle multiple key presses in java but all the solutions I've found are assuming that all keys are pressed. I'm creating a very simple game where an image that I loaded ...
1
vote
0answers
33 views

Extending my llittle game with a TimeCouter and highscore

Hello Together recently i learnd about keyListeners so i tried to code a little game with it. Now it is kind of finished but i would like to implement some extra features. I thaught of a timer or ...
1
vote
0answers
187 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 ...
1
vote
0answers
114 views

KeyTyped being called twice in this code?

There is a bug somewhere here. For some reason, when I am sending the message to the server, every message is received twice for any single keystroke! for instance, i type "a", and the server receives ...
1
vote
0answers
26 views

Java KeyListener in Ubuntu VM firing all Events at ones

I got a problem with my java program, working in a ubuntu virtual machine, using vmware fusion on macosx mountain lion. in my java program i implemented a keylistener, for control a car with W A S D ...
1
vote
0answers
218 views

Python keylistener - Raspberry Pi

I have just got my raspberry pi and make it pulse a speaker :). Now I want it to make different sounds depending on what key you press. How do I implement a key listener in python the? I know how to ...
1
vote
0answers
67 views

In java press key without frame (or frame in background)

I created a program that controls the mouse using the keyboard. I implement KeyListener to a class I called Keyboard, and then I create a JFrame called frame that adds this keyboard class. Here's part ...
1
vote
0answers
146 views

Ruby - Function keys listener with Interruptions

I would like to add some listeners on F1..F4 keys for example in order to make a loop program interactive with users.... For exemple: exiting some while loops, entering some if loops or printing some ...
1
vote
0answers
502 views

android keylistener losing key taps

I am using a keylistener to get key taps. The problem is that once you tap the delete key, the next key tap is not registering. The key tap after that keeps working. If I tap 2 deletes in a row, ...
0
votes
0answers
20 views

KeyListener doesn't work on JFrame using BlueJ

I'm doing a college work about a game. I catch the events through a KeyListener implemented by the JFrame, and it sends the events to the panel shown. This works perfectly on both Eclipse and as an ...
0
votes
0answers
23 views

Key Inputs to change direction of an animation?

I am trying to get a working tron game. My problem is that I do not know how to change the direction of an animation using the key pad and WASD. import java.applet.Applet; import java.awt.Color; ...
0
votes
0answers
22 views

Simple Key Listener does not work NetBeans

i am using NetBeans to build my application. All my mouse listeners are works great, but key listener does not listening at all. private void viewport1KeyPressed(java.awt.event.KeyEvent evt) { ...
0
votes
0answers
4 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 ...
0
votes
0answers
4 views

Giving a JPanel priority focus

I have a JPanel that is using a KeyListener as the content pane as the window; however, there are buttons and text fields in a grid layout on top of the JPanel. How do I prioritize the focus of the ...
0
votes
0answers
26 views

Why won't my avatar move.

This is the code. The box will not move even if I click a directional key. So, I want to know what's going on. Can you help me? Thanks in advance! import java.awt.*; import javax.swing.*; ...
0
votes
0answers
34 views

requestFocus() not working with show() method

I'm making a game where the program has to show one panel, and from that panel show the previous panel, and then show the first panel again. To make things simpler, let's say we have PanelA and PanelB ...
0
votes
0answers
34 views

Adding Button in North Layout area Broke my Iconified action?

I come today with a strange issue. I added an KeyListener to Iconify my JFrame by pressing the "Windows key", but when I add a component in the North area of my Layout I can't Iconify my app anymore. ...
0
votes
0answers
47 views

KeyAdapter doesn't work

I'm creating a simple Pacman game and in the beginning I wanted to make my Pacman move. However it doesn't response to key presses at all. I read many topics with same problem here, but it was mainly ...
0
votes
0answers
17 views

KeyListener Runtime Error

import java.awt.Image; import java.applet.Applet; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class UseStick extends Applet implements Runnable, ...
0
votes
0answers
37 views

Determining if input is from the user

I'm trying to figure out if the input sent to an applet is from the user or not and at the same time, send fake input to the applet as if the user entered it. I did not create this applet; I load it ...
0
votes
0answers
15 views

KeyListener error

I have a problem with adding keyListener to my aplication: App.Game is not abstract and does not override abstract method keyRelased(java.awt.event.KeyEvent) in java.awt.event.KeyListener I try ...
0
votes
0answers
52 views

Problems with KeyListener and CardLayout, only works the first

I've several JPanels with different Key Listeners in the same CardLayout, but when I change the visible panel, the KeyListener of the next doesn't work. I don't know why, because all my panels are ...
0
votes
0answers
86 views

keylistener added to JPanel not working

The following is a piece of code in a snake game I'm making, and I have trouble with making a KeyListener function. The game is a JPanel inside a JFrame, and the KeyListener is added to this JPanel. ...
0
votes
0answers
55 views

JAVA - Adding a keylistener to open a 'pop-up' menu

I'm trying to make a Java game and am interested in having some menu pop up when you press the escape button. I'm thinking the best way to be to implement a keylistener to something but I'm not sure ...
0
votes
0answers
43 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 ...
0
votes
0answers
122 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 ...
0
votes
0answers
190 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
0answers
49 views

Function only gets triggered when a console print is in front of it, Java

I'm writing a VOIP JApplet at the moment but I have some strange code behaviour in my Push to Talk functionality. The thing is that the keyevent gets triggered en does everything right, but when I ...
0
votes
0answers
71 views

KeyListener is unresponsive when switching from fullscreen to windowed mode

Long time reader, first time contributor. For fun, a friend and I are writing a simple little snake game in Java. We wanted to have the ability to switch from Fullscreen to Windowed mode. Using ...
0
votes
0answers
90 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 ...
0
votes
0answers
95 views

Two EditText fields with one onClickListener

I am trying to create two text fields with data input (one for String and another for int value). When user have inputted String data to first field he should move to the second one after virtual ...
0
votes
0answers
158 views

alert dialog inside of a keyListener or clickListener, alert dialog placement

what is the best way to use an alert dialog with an keyListerner or clickListener? In this case i wanted to set it up so that the user will get an alert dialog to confirm that they want to edit the ...
0
votes
0answers
245 views

GetAsyncKeyState and ToUnicodeEx and VirtualKeys

I have the folloing code on a C# application, and I'm trying to get all keys pressed and write them on a string. The problema that I'm having is that if a press Shift+L or Shift+1 the ToUnicodeEx ...
0
votes
0answers
972 views

Android onkey - dispatchKeyEvent not firing

well, I've tried all the solutions I could find on stackoverflow and in other places, but the end result hasn't changed one bit: the only key that triggers the onKey event or the dispatchKeyEvent is ...
0
votes
0answers
94 views

ESC Keylistener to Reset Style

Longtime stackoverflow lurker, stepping into the light so I can ask a really stupid question - sorry. I don't know javascript. At all. But, while happily working away I discovered that I wanted to ...
0
votes
0answers
81 views

KeyListeners for Maze: java

I'm still new to java and I am having a hard time to understand all the classes. And now, I am stuck in adding a keyListener for my maze. We tried to add an inner class w/c implements a KeyListener ...
0
votes
0answers
100 views

KeyListener Interface - recording time

JTextField userTypingRegion = new JTextField(); userTypingRegion.addKeyListener(this); public void keyTyped(KeyEvent e){} public void keyPressed(KeyEvent e){} public void keyReleased(KeyEvent e){} ...
0
votes
0answers
204 views

Listen to KeyEvents form Softkeyboard

i have a not that common problem/question What I try to do: Listen to KeyEvents from a modified Android Softkeyboard (atm, the Softkeyboard from the samples) ==> this already works, implemented a ...
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
0answers
204 views

KeyListener not reacting

Im trying to use a KeyListener to do something when the button m is pressed, it needs to add an image to a JPanel, however it doesn't do anything :/ I use : public void keyPressed(KeyEvent ...
-1
votes
0answers
40 views

KeyListener Java not functioning

I'm writing a simple Pong game. I have a Paddle class that extends the JComponent class and a Player class that extends JComponent as well. I tried both p1.addKeyListener(new MoveButtons()) and ...
-2
votes
0answers
31 views

Learning about keyListener in Java

I'm a kid that is trying to learn how to program in java and I recently started learning about JFrame and the GUI at my school. On my own, I learned about something called a KeyListener. In my ...

1 2