A KeyListener is an implementation of the Observer pattern which is created specifically for handling keyboard events.
2
votes
2answers
163 views
Swing: keyListener codes are “unknown”
I put a KeyListener on a TextField in my swing application to try some functionalities. The goal is to react on every key typed in that TextField. The user should only type in numbers, but how it is, ...
0
votes
2answers
296 views
KeyListener in Java
Hello everyone I am new to Java so i think the answer to this question is very easy but I can't find out what part i'm doing wrong.. I added a keyListener to my pacman game but somehow it won't work.. ...
1
vote
1answer
92 views
JTextPane got Next Value before keyReleased method ends
I have a JTextPane which is bind with KeyReleased Event. My Goal is that whatever
user typed in that TextPane It will print some character.
{'I', 'N', 'V', 'A', 'L', 'I', 'D'};
Above character ...
0
votes
1answer
95 views
Button not displaying in applet
The following is the condensed code of my applet game:
import java.applet.Applet;
import java.awt.event.*;
import java.awt.*;
public class Game extends Applet implements KeyListener, Runnable {
...
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 ...
0
votes
0answers
93 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 ...
3
votes
1answer
1k views
Snake Game Java Gui
Hello I've started to develop a snake game recently. I'm in the beginning stage where I have a moving object and a dot for it to eat but my main issues are how can I check if the snake "ate" the ...
1
vote
1answer
162 views
MouseListener and KeyPressed
I've built a simple animation program that moves a box to a direction depending on the
arrow key pressed (similar to snake), in JFrame using KeyListener and ActionListener. but I've noticed that if I ...
-2
votes
1answer
168 views
Add a Key Listener to TitleAreaDialog
I need to add a key listener to my TitelAreaDialog is there any solution to do this ?
0
votes
1answer
302 views
setOnKeyListener onkey remove update method on keyboard, or how to consume a keystroke in android
i have several textEdits that can take text from the user, however i also made a button that will be used for update of the information to the database.
how can i set this up so that the user can ...
1
vote
1answer
115 views
Read Key pressings in C ex. Enter key
I know how to use events to test where a key is pressed or not, but in C i never found how to do that.
What i exactly want is a Keylistener that listens for the up, down, left and right keys. I need ...
0
votes
2answers
128 views
What method is used for Keyboard keys to move stuff in Java instead of ActionListener
Hello I created a little application that moves a ball that I've painted in Java but uses ActionListener, now I am new to Java and I would like to use mey keyboard to do this. What method should be ...
3
votes
1answer
84 views
Java limit KeyListener update
So, I have a KeyListener added to my JFrame, and a Thread to my JPanel which is added to my JFrame. The problem is that the thread repaints slower than the notification of keylistener...is there a ...
0
votes
7answers
405 views
activate event with a keypress
I am trying to find a sulotion to translate the void keypressed from c# to java without any succes yet anyone a sulotion?
I want when i press the key 13(enter) that Private void doen() activates ...
1
vote
1answer
148 views
keylistener with jlist
want the jtextField in my frame to appear when press any key on the keyboard in the jList, this is what i did :
public class test extends javax.swing.JFrame {
public test () {
...
1
vote
1answer
283 views
How to implement keystroke logging by java [duplicate]
Possible Duplicate:
How do you record keystrokes when operating on another window in Java?
Try to get all keystroke on the OS. any ideas?
0
votes
2answers
338 views
Java - best way to add controls to a game
I'm making a 2D game in Java, I used the KeyListener and some Booleans to detect key press. But the problem is, whe I hold down a key the player wouldnt move for half a second, and then starts ...
2
votes
2answers
656 views
How do you make key bindings for a java.awt.Frame?
Background
My window is a java.awt.Frame, and inside of the Frame are two Panels (java.awt.Panel). I'm trying to make it so that the window handles buttons I press.
Try Number 1
I tried using a ...
0
votes
0answers
244 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
3answers
2k views
KeyListener Java
I am trying to use KeyListener in my code.... But it's not working, the KeyListener not responding I think...
If you guys see anything wrong please tell me. I don't know why it's not working.
Thanks ...
-1
votes
1answer
249 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
3answers
119 views
Control key is not getting detected
This key event is not working. The same code is working for,
VK_SPACE
Its not working for control
private void jTextArea1KeyPressed(java.awt.event.KeyEvent evt) {
if ((evt.getKeyChar() == ...
1
vote
4answers
172 views
KeyListener help Java
Hi I've taken up learning java at the moment I'm trying to get a key listener to work but struggling.My code is bellow there is a error at the first curly bracket at the beginning of the anonymous ...
0
votes
1answer
34 views
Accessing JComponents from keyListener
JPanel(a).JPanel(b).JLabel
JPanel(a).JTextArea
I have added a KeyListener to JTextArea. When it gets invoked, it's supposed to acess the JLabel and return getText().
I can get to JPanel(a) by ...
1
vote
2answers
237 views
multiple key detection for KeyListener (java)
How would one implement KeyListener so that I can create a two-player system where one person uses '.' and '/' to control a character, and the other person can use the arrow keys without them ...
-4
votes
2answers
452 views
The type [classname] must implement the inherited abstract method KeyListener.keyTyped(KeyEvent)
java: I'm stuck on the error The type Pong.Move1 must implement the inherited abstract method
KeyListener.keyTyped(KeyEvent) when I used keyListener. I don't get what it means? Help?Here's the ...
1
vote
2answers
139 views
KeyListener class
So, I'd like to create a keylistener inside my program that is applyable to all the classes in it (as when creating class as an object).
I don't know how to do it with a key(or any other) listener.
...
3
votes
2answers
415 views
Java KeyListener is Delayed Registration
As most people would by now realize with the key listener, is that in the keyPressed method, java registers one press of a key, then pauses for about half a second then records a steady stream of you ...
0
votes
1answer
731 views
Flash AS3 KeyboardEvent not firing
I have a class like this:
public class GameOverScreen extends MovieClip {
public function GameOverScreen(useMouseControl:Boolean) {
if(useMouseControl){
Mouse.show();
...
0
votes
0answers
960 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 ...
2
votes
2answers
215 views
How to properly implement SHIFT + BACKSPACE key stroke inside of a JTextfield
So I have a basic swing application, it contains a JTextfield, I add the following KeyListener to it:
public class PromptKeyListener implements KeyListener {
private boolean SHIFT_PRESSED;
...
2
votes
2answers
270 views
How to catch Enter key and change event to Tab in Java
I have a swing application with multiple jtextfield on it. How do you replace the function of the enter key wherein when you press the Enter key, it will transfer to the nextfocusable component just ...
0
votes
2answers
93 views
KeyListener source
How can I access component to which the KeyListener is associated within the KeyListener itself?
I have to create a universal keylistener which would be associated with whole array of JTextAreas, to ...
1
vote
3answers
743 views
Searching a JList in Java
I am trying to create a search functionality with a JList in Java. I have a list of contacts in a ListModel that I inserted into a JList.. That displays all the contacts just fine. However, I have a ...
-2
votes
3answers
3k views
Java keyListener
I need some help on my java code I'm a newbie in java, What I want to do is once I press a letter I want to display some message just to verify that the code works. Using javax swing library ...
1
vote
2answers
93 views
Elegantly Ignoring Key Presses
I am trying to ignore certain key presses in a JavaTextField. I've added a KeyListener because I need an event fired every time a letter/number/symbol is typed.
I do not want an event fired when any ...
3
votes
1answer
795 views
Key Listeners in python?
Is there a way to do key listeners in python without a huge bloated module such as pygame?
An example would be, when I pressed the 'a' key it would print to the console 'The a key was pressed!'
...
-1
votes
1answer
372 views
how to find which key is pressed in android?
I would like to find out which key is pressed. I have a EditText and I added a KeyListener for it. but it doesnt seem to be working.I have a textview and I want to setText which is is pressed on the ...
3
votes
3answers
217 views
How to use a filter for textfields in java swing?
I have a JTextField. And when the user enters a or j, I want the text within the text field to be upper-case (e.g. enter "ab", output "AB"). And if the first letter is not one of the following,
a, ...
1
vote
3answers
817 views
Android onKeyListener on EditText only responds to “Enter” key when pressed twice
I have an EditText that I want to respond to a user pressing the "Enter" key. Here is the relevant code:
EditText edittext = (EditText) findViewById(R.id.user_query);
edittext.setOnKeyListener(new ...
0
votes
3answers
681 views
handle multiple key presses ignoring repeated key
I had asked this in the comments section of another question (> How do I handle multiple key press in java?), and was asked to make a new question altogether.
My problem is that when I create an ...
1
vote
1answer
294 views
How to disable the default key behaviour over a JTree?
I am trying to make a JTree that have a specific behaviours when typing characters such as letter, numbers, ponctuation, to apply filters, decorators, etc.
Everything seems to be working fine, but ...
4
votes
3answers
140 views
Inconsistent keyPressed event: sometimes fires, sometimes doesn't, restart the program without changing anything and it might or might now work
Okay, so I'm pretty frustrated here.
This piece of code here is just a very simple moving JComponent.
What's odd is how, when I'm changing absolutely nothing, the keyPressed event will be incredibly ...
2
votes
1answer
282 views
JFrame mouse click stopping keyboard buttons
My problem is when I click in the space of the frame screen it stops keyboard keys being registered so my player stop moving.
Thanks in advance for the help.
The code:
private Component comp;
....
...
1
vote
2answers
197 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 ...
0
votes
2answers
242 views
How do I separate classes for MVC design pattern in Java (KeyListener separate from JFrame)?
I am making an arkanoid game in java using the MVC design pattern and I do not know how to make the Controller class seperate from the view Class. Its should be simple enough task i want to make the ...
2
votes
1answer
313 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?
...
0
votes
2answers
77 views
Transform jquery listener to javascript listener
I have such code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
...

