Tagged Questions
The keylistener tag has no wiki summary.
12
votes
8answers
19k views
Java KeyListener for JFrame is being unresponsive?
I'm trying to implement a KeyListener into my JFrame. On the constructor, I'm using this code:
System.out.println("test");
addKeyListener(new KeyListener() {
public void keyPressed(KeyEvent e) { ...
6
votes
2answers
976 views
Catching Tabs in TextArea
Does anyone know a cross-browser, reliable solution for catching presses of the tab-key in a textarea field, and replacing (in the correct position) 4 spaces? The textarea is being used to input an ...
6
votes
4answers
3k views
Event listener in Java without app having focus? (Global keypress detection)
I've been searching for a while and everybody seems to think this is not possible using just Java, so I'll give SO a shot ;)
Is there any way to have my Java application listen for events (key events ...
5
votes
1answer
304 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 ...
5
votes
1answer
4k views
Catching key pressed with the virtual keyboard in Android?
With the physical keyboard you can catch key presses with a KeyListener, something like:
myEditText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, ...
5
votes
5answers
3k views
Listening for input without focus in Java
I'm making a small program in Java using the Robot class. The program takes over the mouse. while in the course of debugging if it starts acting in a way that I don't want it's hard to quit the ...
4
votes
1answer
50 views
Comparing functionality between KeyListeners and Key Bindings
This question arose when an anonymous user downvoted an answer of mine involving KeyListeners and suggested the use of Key Bindings instead. This anonymous user informed me that the KeyListener ...
4
votes
3answers
102 views
Why can't I access my panel's getWidth() and getHeight() functions?
I'm writing a simple program to test out basic GUI. The program prints a letter in the middle of the screen and allows the user to move it with the arrow keys. Everything works fine, but when I try to ...
4
votes
3answers
116 views
Java - KeyListener's thread causes concurrent modification. Solution?
My game update loop iterates through an ArrayList constantly, I also have a KeyListener that when a button is pressed, it adds an Object to this ArrayList, which seems to be causing a concurrent ...
4
votes
1answer
121 views
Programming “enter” and “shift-enter” for EditText using a soft keyboard
I am developing an Android application that makes use of EditText (Multiline). The devices I am testing it on lack hard keyboards, so as a result I (obviously) use the soft keyboard. When I ...
4
votes
2answers
104 views
Is there a way to expand a JFileChooser directory without a mouse
Using a JFileChooser, I can select a directory by double clicking the directory (going down a level) with my mouse. Is there a way to select a directory without the mouse? For example, is there a ...
4
votes
4answers
486 views
Java - Waiting for some type of key press to continue
What is the best way to implement a "press x to continue" type of thing in Java?
Specifically, I have a custom class which extends JFrame and a custom class which extends JPanel. I have a Main.java ...
4
votes
1answer
173 views
listening for key/mouse events
Is it possible to listen for key and mouse events without having a gui selected by the user? I want to make a program that runs in the background without a gui and responds to user interaction such as ...
4
votes
1answer
2k views
Android Problem: EditText, KeyListener and the physical Back Button
My activity implements KeyListener and my edittext has a key listener set.
editor = new EditText(this);
editor.setMinLines(4);
editor.setMinimumWidth(400);
...
4
votes
2answers
1k views
close Dialogbox when click ESCAPE(ESC) in GWT
How can I add something like addCloseHandler to dialogbox that to close when click the ESC key?
4
votes
4answers
5k views
BlackBerry - KeyListener with global scope
I am new to BlackBerry App development. I want to be able to listen for keypress events whenever the BlackBerry (8900 in my case) is on and on all screens is this possible?
If so, it would be great ...
3
votes
1answer
109 views
java keylistener not called
I have written a sample code using KeyListener in Java,
I have created a JPanel, then set its focusable to true, I have created a KeyListener, requested a focus and then added the KeyListener to my ...
3
votes
3answers
67 views
Java Swing: How to prevent system copy,cut,paste action?
So I am trying to prevent the user from being able to use the default system actions by pressing control + C, control + X, control + V.
I want anywhere inside this particular scrollPane, to catch the ...
3
votes
2answers
125 views
JTextField do not work keyListener
Sorry for my English.
I have some problems with JTextField and with KeyListener.
I have the code below :
package com.gugnovich.tasks;
@SuppressWarnings("serial")
public class Task1Panel extends ...
3
votes
1answer
114 views
JTextField key listener is one behind after pasting
I am trying to check that the text in a JTextField matches a perticular pattern, and if it does / doesn't display a message the user. This is what I have so far:
public class input extends ...
3
votes
1answer
189 views
isShiftDown when JButton pressed?
Hi all
I have a JFrame and I've added a JButton to that JFrame.
Also I've added an ActionListener to my JButton.
Now please convert this Pseudocode to Java :
public void actionPreformed(ActionEvent ...
3
votes
2answers
1k 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 ...
3
votes
2answers
3k views
Java Keylistener without window being open?
I'm trying to create an auto-clicker in Java(only language I know and I just learned Threads). I want to have the applet open in it's own window(not on a webpage), and I want to be able to start and ...
2
votes
2answers
34 views
Java: How can I get rid of a specific JPanel by clicking an arrow key?
This is my inner class that creates the graphic text. I want to be able to press an arrow key and have it disappear. I'm sure it involves the remove method somehow, but I'm in over my head. Very new ...
2
votes
2answers
51 views
Java Keyevent handling
I am creating a game in java applets. The game responds on keypressed event by implementing keylistener iterface in my class.
I want that until previous keypressed event is completed, no new events ...
2
votes
1answer
45 views
Java KeyListener Not Registering Arrow Keys
I'm writing a simple program in Java which includes a KeyListener with the following overriding they KeyTyped method:
@Override
public void keyTyped(KeyEvent e)
{
int key ...
2
votes
1answer
47 views
Why are some keypresses not being captured during multi-key combinations?
Is it a keyboard limitation problem?
I'm having an issue with some code I'm just playing around with. Imagine a top down space shooter. The issue I'm having is that, on my computer, when I press and ...
2
votes
1answer
113 views
Java: JPanel cannot receive key events after button is clicked (which has no registered event listener)?
First of all, thanks for taking the time to read my question, I appreciate it.
Here's the overview of what I've got now:
I'm writing a slider puzzle game, 3 by 3 using buttons as grid cells. I've ...
2
votes
3answers
98 views
Java keypressed event not firing
During writing this code I realized if making into a jar there would have to be a graceful way to close the program. I have chosen to use the key 'F1'. I've researched a few articles online and found ...
2
votes
1answer
93 views
Java ComboViewer react on edit, KeyListener?
I am using a JFace ComboViewer in my Plugin. As a convenience feature I'd like to change the current selection just by starting typing.
For that I added a KeyListener to the underlying Combo Element
...
2
votes
1answer
49 views
Java action on Enter key entered, not display line break
I am doing a chat application and I put a JEditor pane to type the message.
I put a key listener on this JEditor so that when I type the Enter key, it sends the message.
My problem is that it sends ...
2
votes
1answer
71 views
How can I listen to a TAB key pressed/typed in Java?
private void jTextField1KeyPressed(java.awt.event.KeyEvent evt)
{
//cant capture my TAB?
System.out.print(evt.getKeyChar());
}
What is the simplest way in an java gui to ...
2
votes
2answers
50 views
c# propertyGrid key listener
I have a propertyGrid;
PropertyGrid contains lots of properties storing number values;
What I want to do is to enter one of those properties and instead of writing new number in it, by pressing arrows ...
2
votes
2answers
105 views
KeyListener on JPanel randomly unresponsive
I'm having trouble with the default Java KeyListener in my project.
I noticed that the KeyListener doesn't seem to get KeyEvents forwarded sometimes when I start.
Symptoms of the problem:
When ...
2
votes
1answer
124 views
keylistener not working after clicking button
I have a keylistener attached to my frame in java, i can detect key presses when I hit any key, a strange thing is happening however. My game is a minesweeper game, I have a restart button that ...
2
votes
2answers
80 views
In Swing, how to apply KeyListener on no specific component
Generally we apply the Key Listener on specific components like text field, password fields, etc. But I would like to generalize this listener behavior to be applicable to all.
2
votes
1answer
87 views
Swing : detecting onKeyPressed
I'm trying to do a very simple thing : trigger an action when the user presses on a key of the keyboard
the keys I would like to map are :
key +
key -
key delete
ctrl+c
ctrl+v
public class ...
2
votes
2answers
338 views
Java - KeyListener, keyPressed versus keyTyped
I have a JFrame (well, a class which extends JFrame) and I want to do an action when I press the F5 key. So, I made the class implement KeyListener. And with that, came three methods, keyPressed, ...
2
votes
4answers
330 views
Java KeyListener in a Console Application
Im currently looking to write a user input orientated method for generating a secure AES key. the application is to be a console application which takes user input via the replication of a randomly ...
2
votes
4answers
63 views
Is it possible to make a JComponent default to not-focusable?
I know you can call JComponent.setFocusable(false) to make a Java component not be focusable. But since I have a LOT of components in my application that I want to be that way, I was wondering if ...
2
votes
2answers
448 views
Detect on/off Key Press Android
How can I detect the power button or lock screen button being pressed? When my game is paused in this way, it can cause the game to crash because I need to pause a thread when it happens.
2
votes
2answers
278 views
capture key press within frame
This seems like a simple behavior, but I'm having difficulty making it happen. I'm working on software which graphs data. I want to redraw the graph when the user hits enter. Well more accurately I ...
2
votes
1answer
187 views
JInternalFrame KeyListener focus
Good day,
I have this view [extends JInternalFrame that has a controller [implements KeyListener].
On a method of mine, void loadListener() is where I added the KeyListener to the view.
At first ...
2
votes
1answer
570 views
Android: EditText delete key not registering on first keydown
My problem is this;
I have an edit text and am using setKeyListener and creating a new NumberKeyListener. In this on keydown when a number is hit it works as expected, but when the delete/backspace ...
2
votes
1answer
106 views
2
votes
1answer
1k views
Android: KeyListener for an EditText not receiving keys
I have an EditText that I want to monitor KeyEvents for, and I have a listener set up as follows:
mText = (EditText) this.findViewById(R.id.title);
mText.setOnKeyListener(new OnKeyListener() {
...
2
votes
4answers
111 views
Is the order in which KeyListeners will be called guaranteed?
I may be missing something obvious about this in the documentation for addKeyListener, removeKeyListener, getKeyListeners or associated tutorials, but are there any guarantees about the order in which ...
2
votes
3answers
572 views
Listening to key events for a component hierarchy
I have a Swing app that needs to display different sets of controls based on whether the control or alt keys are pressed. I added a KeyListener to the main component, but it is notified only if that ...
2
votes
4answers
231 views
How to make all components in an application respond to specific key event?
I mean, like, pressing 'F5' in web browser will refresh the web page regardless of where the focus is. How do i do this in Java with GUI app? I can do 'addKeylistener' to all components but I'm sure ...
2
votes
3answers
1k views
jpanel keylistener
yet another java question.
I am trying to add a key listener that holds a jtabbedpane.
it should switch the tabs when ctrl + tab is received.
but the keypressed event is never sent
I tried adding ...