Tagged Questions
Swing Action Listeners are probably the easiest and most common event handlers to implement. You implement an Action Listener to define what should be done when an user performs certain operation. An Action event occurs, whenever an Action is performed by the user. Examples: When the user clicks a JButton, chooses a JMenuItem, presses Enter in a JTextField.
17
votes
3answers
3k views
Differences between action and actionListener
What is the difference between action and actionListener. When sould I use action and/or actionListener? My question is related JSF 2.0.
5
votes
4answers
276 views
Nested class vs implements ActionListener
Are there any benefits or drawbacks to creating a nested class that implements ActionListener:
public class Foo{
Foo(){
something.addActionListener(new ButtonListener());
}
//...
...
4
votes
1answer
45 views
Java mouse events ignored when mouse is moving?
I've been working on a 2d game in java recently, and am currently trying to get the event-handling system working right. I was trying to get a mouse click to start an animation, and it worked until I ...
4
votes
2answers
139 views
Java - Listen to variable change
First of all i am brand new to Java : /
I have been trying to solve this problem on my own for about 2 days now but cant get around it the problem is i am trying to implement a variable change ...
4
votes
4answers
112 views
How can I find out which button was clicked?
I've got my buttons working right, and I'm a listener to each button like this:
for(int i = 0; i <= 25; ++i) {
buttons[i] = new Button(Character.toString(letters[i]));
...
4
votes
3answers
115 views
Creating a GUI with ActionListeners inside a method
I have a method inside one of my classes to my Java application that makes a Swing GUI and has it's own action listeners - which works fine. However, when the window is closed I need the method to ...
4
votes
3answers
2k views
Creating Custom Button in Java
I am trying to create a button that is a custom shape (hexagon), but otherwise acts like a normal JButton would (i.e. works with an ActionListener).
I have created a class that extends ...
4
votes
3answers
589 views
Java Hangman Project: Action Listener
I am creating a hangman game. I made a button A - Z using the GUI Toolbars in Netbeans as follows:.
My problem is, how can I add an actionlistener to all of it. Is it possible to use a loop? If i ...
4
votes
4answers
1k views
How do I programatically send ActionEvent to JButton?
How do I programatically send an ActionEvent (eg button pressed/ACTION_PERFORMED) to a JButton?
I know of:
button.doClick(0);
and
button.getModel().setArmed(true);
...
3
votes
1answer
51 views
Is ActionListener an example of Delegation pattern?
In my college days, I never realized what patterns were there in the Java API.
Now at work I came across Delegation pattern in Objective C n Cocoa on iOS where one screen sets itself as a delegate on ...
3
votes
3answers
103 views
How do you simulate a full click with Java Swing?
I am implementing some keyboard code for an existing java swing application, but I can't seem to get a keyboard press to execute the "mousePressed" action and "mouseReleased" action that are mapped to ...
3
votes
4answers
185 views
JButton stays in pressed state
In my Java GUI app I have a JButton and when clicked it calls a function to connect to a database, then calls a function to clear a table in the DB, then calls a function that reads text from one file ...
3
votes
2answers
156 views
How can I put an actionlistener to the OK button of JOptionpane.showInputDialog?
I have a showInputDialog. Whenever I type something to that field, I want it to be save as textfile when I click the ok button. My problem is I don't know where/how to put the listener.
Could ...
3
votes
1answer
215 views
Java: Register <ENTER> key press on JTextPane
I'm making an application with java that has a JTextPane. I want to be able to execute some code when the enter key is pressed (or when the user goes to the next line). I've looked on the web and not ...
3
votes
4answers
221 views
Java : Swing : Hide frame after button pressed
I have a button in a java frame that when pressed it reads a value from a text field and uses that string as a port name attempting to connect to a serial device.
If this connection is successful the ...
3
votes
1answer
106 views
adding drawRect with ItemsListener/ActionListener using JCheckBox and JRadioButton in JFrame
I do not know where to add ActionListeners/ItemListener and need help:
This is the desired output:
If you selected a shape in checkboxes, it will draw a type of shape you selected
and if you ...
3
votes
4answers
159 views
Swing - calling events from inside panel
I have simple Swing GUI with main window JFrame and its main panel derive from JPanel. The panel has some buttons that can be clicked and generate events.
I want these events affect data stored in ...
3
votes
2answers
2k views
Android touch listeners?
I need to nest s few touch listeners. For example I have a ViewGroup that will have the following listeners: onItemClick, onLongItemClick and onTouch.EV == move.
The items inside the view group will ...
3
votes
3answers
325 views
How does an ActionListener work?
I have an idea of how to use action listeners and implementing them but I was wondering if anyone could tell me how do they listen to the events?
Is there some kind of polling mechanism?
3
votes
4answers
749 views
How to launch an .exe file by clicking a JButton in GUI?
I've created a JFrame with 3 Jbuttons. I'd like the button to launch different .exe file located in the same folder. Is this possible? If yes, what should i write for the actionListener? On the other ...
3
votes
1answer
297 views
Manipulating a JToggleButton's ImageIcon while pressed/selected
I (very miraculously) answered my own question while writing this question , but it was such a find I wanted to share with everyone. I understand these should be true "questions" but it was a ...
3
votes
8answers
423 views
Can addition of an ActionListener be short? Can I add arguments to the actionPerformed?
I have a big table containing a button in each cell. These buttons are very similar and do almost the same. If I add an action listener to every button in this way:
tmp.addActionListener(new ...
3
votes
4answers
594 views
How could I implement new JFrame functionality
I am trying to remove the drag bar across the top of the JFrame. I would like to keep the minimize maximize and close options that appear on this bar available. What I was thinking was to remove the ...
3
votes
3answers
6k views
ActionListener on JLabel or JTable cell
I have a JTable with JLabel[][] as data. Now I want to detect a double click on either the JLabel or a table cell (but only in one of the columns). How can I add an Action/MouseListener on JLabel ...
3
votes
1answer
2k views
ICEFaces action vs actionListener
I am not clear on the difference between these two methods. I see that the actionListener takes an ActionEvent as a parameter, but both may be tied to a method in the backing bean.
Is the only ...
2
votes
3answers
45 views
Requesting user input from outside the GUI code, do I need Events or Action to communicate with the GUI in this case?
I'm writing a 2D polygon and physics editor, one functionality is to set a rotation limit for joints.
To use this functionality, the user clicks and drags a line between the joint points which need ...
2
votes
3answers
42 views
JComboBox check that a Select isnt from the program
I have the following Programm
package utests;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.util.ArrayList;
import javax.swing.JComboBox;
import ...
2
votes
3answers
44 views
action performed when an option from a JComboBox is chosen
Hi I have a JComboBox with 3 options, and I'm trying to figure out which actionlistener to apply in order for something to happen when an option is selected. At the moment my code is:
comboBoxMode = ...
2
votes
2answers
45 views
Using null assignment to control addition and removal of listeners
I have a case where a JComponent needs to have a listener added or removed depending on the state of other fields of a class. The listener should not be added more than once, and it can, of course, be ...
2
votes
2answers
66 views
Java: actionPerformed method not firing when button clicked
I'm creating a gui application that requires some simple input, however, when I click the button in the JFrame the actionPerformed method I'm using is not fired/firing (nothing happens). I can't seem ...
2
votes
3answers
64 views
Accessing pre-parent class with ActionListener
I got this as home exercise but I have no clue how to solve it... (Just the access part is kind of difficult to figure out)
So, I have two classes: "Top" and "Main". The Top class looks like this: ...
2
votes
2answers
95 views
Link a button to a picture using a listener in Java
I am trying to create a memory game in Java. Something like this, but much more simplier -> http://www.zefrank.com/memory/
Here is my code:
import javax.swing.*;
public class Memoriin {
public ...
2
votes
1answer
115 views
action listener to JDialog for clicked button
I have main application where is table with values. Then, I click "Add" button, new CUSTOM (I made it myself) JDialog type popup comes up. There I can input value, make some ticks and click "Confirm". ...
2
votes
2answers
79 views
actionlistener for a listview item/button android
package com.xpresso;
//import android.R;
import java.util.Locale;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.database.Cursor;
...
2
votes
3answers
75 views
why doesn't the frame close when i press the escape key?
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class displayFullScreen extends JFrame {
private JLabel alarmMessage = new JLabel("Alarm !");
private JPanel ...
2
votes
4answers
130 views
How to pause and resume a simple game in Java
i made simple game by java , it's about "tennis background" and "tennis ball" , and the ball is randomally move automatically ,
my game consist of two file , 1st file fore Jpanel , and 2nd file for ...
2
votes
6answers
77 views
How to handle Timers correctly in Java?
I want my timer to execute the actionPerformed method only one time once it 5 seconds the time but it is writing in the console "Hello" lots of times:
import java.awt.event.ActionEvent;
import ...
2
votes
2answers
94 views
Create object of a class containing anonymous inner class via reflection
I'm trying to create an object of class Test containing anonymous inner class - ActionListener - via reflection.
The class is loaded properly. I can list any fields, methods, contructors etc. The ...
2
votes
1answer
76 views
How to properly clear, add or edit data in JTable? And how to control TableModelListener?
I have a big problem with JTable. Here is how it works:
a user adds a new Shape to Model
Controller updates Model and sends a notification to View to update
View gets data from Model and renders ...
2
votes
4answers
65 views
Passing input from JButton to console
statsButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e){
//Return the string "stats" to gameLoop() as cmd
}
});
...
2
votes
1answer
57 views
Implementing variables with .actionPerformed in Java
I am by no means a programmer and have learned most of what I know by tinkering around on forums and looking through examples that are mostly written by you fine people. I have gotten to the point ...
2
votes
4answers
68 views
How to user action listeners (java swing)
I'm new to Swing and need some help with action listeners. I have seen them used like this example:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
...
2
votes
1answer
129 views
actionPerformed on JButton as TableCellEditor incorrectly invoked on MouseDown
I'm trying to use a JButton as TableCellRenderer and TableCellEditor for my JTable. In my test scenario I have 5 rows which each shows a JButton as Renderer and Editor (different button instances for ...
2
votes
2answers
59 views
Why would I be getting a Null pointer exception with Gui input and listener methods?
I am new to Java and I am trying to allow a user to enter an employees first and last name via the Gui and when they press the submit button it activates the listener methods and allows the values ...
2
votes
3answers
282 views
JButton actionListener
I programmed a JFrame that have a Button and JList , and when i click on the Button , the JList list will be displayed . Instead it shows nothing unless i click on maximaze , or refresh the frame.
...
2
votes
5answers
159 views
a GUI java program needing an action event button
I am making a simple java program that represents a Microsoft Word menu bar, and in the file menu I add an exit button... it does nothing.
I need your help to tell me what to do to make the exit ...
2
votes
5answers
348 views
Bring a component on a JPanel to front (Java)
In VB, you can use zOrder.
In .Net, it's .SetChildIndex.
Before you ask, no I'm not using a layout manager in this case. If you have two components on top of each other, how do you change the order ...
2
votes
2answers
67 views
Using a Derived class of a Java Swing control to create listener for self
At the outset: I know that what I am doing is bad design. I am trying this to get a better feel of Java - what is possible, what is not and why?
I have written the following code:
import ...
2
votes
4answers
87 views
connecting two JTextAreas in java (updating)
I have a large JTextArea where users can input a bunch of text. My program allows users to select some text and create smaller JTextAreas with the selected text for closer analysis (editing, etc).
...
2
votes
3answers
201 views
textarea.getText() is not working properly in Java
I have a JTextArea, and I'm trying to do a stupid test using textarea.getText()
if(textarea.getText() == "")
{
System.out.println("empty string");
}
When I do this I don't get anything on the ...