Java ActionListener is an invisible GUI object that gets its method called when the user performs a certain action. Common actions include pressing the push button, toggling the toggle button, checking the checkbox, selecting an item in combo box and the like.
-2
votes
0answers
66 views
When a value is changed, program does not see it as input
So I have my actionListeners attached to my buttons, and when I click on them, they change my menu to "yes" or "no". But I use menu = is.next(); to ask for input and use the yes button to change the ...
0
votes
5answers
73 views
how do i differentiate between two different JButtons in actionPerformed?
so i have my JButtons
public static JButton textYes = new JButton("Yes");
public static JButton textNo = new JButton("No");
my menus
public static String choiceReroll = "";
public static String ...
0
votes
3answers
32 views
How to use actionPerformed() to check to see if a button has been clicked?
public void actionPerformed(ActionEvent e) {
if (text1.equals(e.isSelected())) {
System.out.println("test");
}
else {
System.out.println("error");
}
}
}
text1 ...
0
votes
2answers
48 views
Changing JButton Text or color without final?
Hey all I can change the text of 1 single button easily with "final" but I need to create lots of buttons for a flight booking system, and when the buttons are more, final doesnt work ...
JButton ...
0
votes
0answers
28 views
How can I add information from a JTextfield to an Arraylist?
Sorry for my longest question in my life. But I do really want it to be answered!
I have been working with GUI and trying to use different layout managers primarily cardlayout for panel swap and ...
1
vote
3answers
42 views
JButton background image
Hi i am trying to implement Action listener for JButton and code look like following:
ImageIcon imageForOne = new ImageIcon(getClass().getResource("resources//one.png"));
one = new ...
0
votes
1answer
41 views
Best way to add ActionListeners to the View
After reading some posts, I am not sure about the difference between these two ways to implement ActionListeners. Is there any good reason to code in one way or another? What about view-decoupling?
...
-3
votes
0answers
27 views
Networking program freezes upon button being pushed. loop in action listener [closed]
I am making a messaging program and need some help. There is a gui containing some swing stuff. Particularly 2 JTextFields, one for the port number and ip, and a connect button. After typing in my ...
0
votes
3answers
37 views
What is the proper use of KeyListener? [closed]
So I have been working on trying to extract the data in my jTextFields and this error message keeps popping up referring to an:
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: ...
0
votes
1answer
64 views
One part of layout manager not working and ActionListener not working
I am trying to add the buttons to the mainPanel after i click the button,
currently only appetizer is set,
The second thing is the GridLayout on my mainAppPanel is not working, the rows ,vgap and ...
-2
votes
1answer
36 views
didn't understand action listner of radio buttons
when i click adjacent two radio button then a line drawn between these button i put conditions in my code that line only will draw when two horizontal or vertical radio button selected else it show a ...
0
votes
2answers
39 views
JSF 2.0 Forbid calling action after failed validation in actionListener
I have a dialog for adding some data:
<p:commandButton id="save"
actionListener="#{adminNationalController.saveTeam}"
...
0
votes
0answers
51 views
JPanel not accessible outside of constructor
I wish to be able to make changes to What jpanel is shown on a tab of a Tabbed panel once a button is pressed. Issue is, inside of the actionlisteners I can not acecss the JPanels to disable them and ...
0
votes
1answer
34 views
Launching notepad using JButton and ActionListener
I have done around 1 to 2 hours of googling for what should be a very simple question
I need to launch a txt doc, for example text.txt on my Desktop (C:\Users\Computer\Desktop\text.txt) using a ...
1
vote
1answer
48 views
How to set button to invisible in content pane/container
I'm pretty new to Java and I'm just trying to teach myself by going through a textbook. The textbook provides the following code for an applet:
import java.awt.Container;
import ...
1
vote
3answers
49 views
Java - Error on use of Timer
So I have googled some minutes how to use the timer and found some helpfull threads here. But when I want to use the suggested code Eclipse shows me always an error.
int delay = 1000; //milliseconds
...
0
votes
2answers
35 views
How can I create a single ActionListener for multiple JButtons
I'm creating a basic calculator using MVC. So far I'm adapting a tutorial which merely sums two user entered values together.
Currently each button I'm adding to the view has it's own listener, ...
-1
votes
1answer
38 views
JMenuItem doesn't execute action
I've looked through the swing tutorials and i do not see what i'm doing wrong. Why is nothing happening when i click on the jmenuitem?
my first class:
import javax.swing.*;
public class ...
1
vote
2answers
37 views
Seeing if JButton is clicked from parent class
I am working on a project in that I am managing multiple windows in the main class. As you can tell from the title, I have a problem with JButtons in the windows.
The main method will wait for one ...
1
vote
1answer
51 views
Update a component from a grid panel through a Listener
How to update a component from a grid panel through a Listener?
I have the following problem:
I create a grid table in this way
public class gui {
JPanel gridPanel = new JPanel();
JPanel ...
0
votes
1answer
27 views
JButton Press (Not Release)
I have a very small JButton called "b", which I want to do some things on click and not on release of it. I use the following code:
b.addActionListener(new ActionListener() {
public void ...
0
votes
1answer
38 views
Display and update balance in JPanel
I am programming a GUI (Bank Account). Everything is working fine; but facing problem in displaying current balance in JPanel, it should display the balance when I hit submit button. I have tried many ...
0
votes
2answers
53 views
Inside panel doesn't show when panel loades
@Override
public void actionPerformed(ActionEvent e){
ChangePanel cp=new ChangePanel();
cp.initialize();
cp.setVisible(true);
cp.setLayout(new BorderLayout());
int ...
0
votes
1answer
22 views
ActionListener: Disabling Buttons
I am currently working on a Java class that produces a simple JFrame/JButton layout of Tic-Tac-Toe. Implementing ActionListener, I intended on having the selected JButton set its title to "X" or "O" ...
0
votes
3answers
43 views
Java Actionlistener submit buttons
When I input something into the textbox my application freezes and stops responding if I hit enter. Its a game where you try to gets a number between 1 and 100. I think I need a submit button or an ...
2
votes
1answer
43 views
How to implement an actionListener for space bar as action event
I have this set up to update pretty constantly on the timer, but I want to be able to pause the timer with the spacebar. I have attempted to implement an actionListener, but I am not sure what to ...
1
vote
3answers
30 views
How to trigger inner class event handler inside an event handler (JAVA)
I have a JTextField with a KeyListener hanging on to it. Inside the keyPressed I check to see if the key being pressed is enter. After this I would like to call a different event handler inside an ...
2
votes
1answer
32 views
How to make JLabel not effect size of other elements in GridBagLayout
my JLabel resizes the JButtons on my GUI I have made here. Is there a way to make the JLabel called answer not resize my buttons? here is my code:
import java.awt.Color;
import ...
0
votes
3answers
61 views
Java Boolean and JButtons
I have written this code and for some reason the code does not work as expected. It seems like it should work, but it kinda makes me think that the values for the "isBasic" boolean is not really being ...
0
votes
1answer
77 views
How to create a custom copy method for a custom model arraylist?
I'm having difficulty understanding how to create a copy method for a custom modellist. My goal is this: I have an arraylist that displays how many objects are in it. I created another list for the ...
0
votes
1answer
74 views
Trying to open new Jframe form another class by clicking a Jbutton
(I just started programming in java.)
So here is my code!
Main:
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
import ...
4
votes
5answers
106 views
Java ActionListeners
I am going to be developing a game in Java, and it will have many listeners( action, key, mouse, etc..).
My Question is what is the preferable way to implement the listeners.
Method 1:
...
0
votes
1answer
59 views
Button New Game not working Java [duplicate]
Hi im making a project for my studies and im new in java. I need to do a game - Arkanoid. What i wanted to do is a game manu with 2 buttons "New game" and "Quit". Someone from stackoverflow.com ...
-2
votes
2answers
45 views
actionPerformed not working
so I created a menu of three buttons, each one will open another window. I added the buttons to the actionListnener, I check the Source, I did everything. but still it's a dummy button.
enough ...
0
votes
1answer
62 views
actionListener not triggered, where to look for error?
Problems with form submit and action listeners in the following code:
<p:commandButton
id="btnOkId"
value="OK"
ajax="true"
type="submit"
...
0
votes
2answers
37 views
Changing a label through a button (Java/Swing issue)
newbie programmer here:
I just made my first button. I want the button to change the label "Hello World!" to "Hello Universe!". I tried searching for ways to change the label through public void ...
1
vote
2answers
35 views
setProperty in ActionListener
Why is configFile.setProperty("dir", "test") not working in the method actionPerformed for ActionListener. It won't put the property in the file.
settings.Save.addActionListener(new ...
0
votes
1answer
27 views
Create function which checks if I pressed inside of element of Graphics2D and link this with ActionListener
I would like ask what is the best way of creating such a function in java? I have my JPanel and this picture below as ImageIcon with Rectangle2D objects (black frames).
Now I just want to simply ...
0
votes
1answer
56 views
implementing actionListener with mulitple classes?
I'm creating a program for my Java class and I'm having a hard time implementing a actionListener in conjunction to my main class.
This is an example of my main class, I am using other classes to ...
1
vote
2answers
44 views
how to make a single actionlistener function for many components
i have the following code in my actionlistener .it's working fine.
private void setActionPerformed(java.awt.event.ActionEvent evt){
Container ct=button1.getParent();
String ...
0
votes
4answers
72 views
Java JButton - making simple menu
Hi take a look on this code:
package arkanoid;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Color;
import java.awt.event.*;
public class Arkanoid ...
0
votes
3answers
48 views
ActionEvent stop
How do I stop the action event of Button2 and more runs after Button1.
Button1 need to do only Button1 Action Event and stop then.
Please Help me, thank you
public void actionPerformed(ActionEvent ...
0
votes
1answer
28 views
Fix for event after clicking button [closed]
Small question, I have this code for a button:
private void testActionPerformed(java.awt.event.ActionEvent evt){
test.addActionListener( ...
0
votes
2answers
45 views
Adding a JPanel to an ActionListener
I have created a JPanel that has all the JRadioButtons on it that I need (it is called PortSettings). I also have a button, called port settings, when the user clicks the button, I need the JPanel ...
0
votes
1answer
35 views
Creating a new file using JTextField
Hi I'm having trouble taking the user input and making it receive user input.
Then taking the user input and using it to create a new text blank text file.
I can get it to work but when I use ...
-1
votes
0answers
30 views
Not sure why this program doesn't run. Compiles fine. Could be conflicting action listeners?
The program is supposed to use a main combo box to make other combo boxes visible, but i keep getting errors when running it. Im not sure what the problem is but I would like some help.
import ...
-3
votes
1answer
49 views
Calling another class with actionPerformed? [closed]
Ok, so i've been trying (very hard) to make this code work. I want to call the class "LevelOne", which is just a test at this point, to another class, Title, which will be called in turn by the main ...
0
votes
1answer
46 views
Save Item from Jlist
I have a JList that is populated from database.
My idea is , when i click in one item from JList, that selection is saved on a String.
final JList list = new JList();
...
0
votes
1answer
37 views
Closing Jframe after a file is selected in JFileChooser
I want to make it so that my JFrame closes after a file is selected in JFileChooser. How should I do this? I tried using the dispose(); function but it doesn't apply to the actionPerformed listener. ...
0
votes
1answer
47 views
Returning String from actionPerformed and actionListener Java
I've created a simple program where you choose a file and, hopefully, have the string of the file path returned, I'm not quite sure what I'm doing wrong here.
public static String createWindow() {
...

