event

Handle action events example

In this tutorial we are going to see how ActionListener works in Java. This is one of the most important components you have to work with when you’re developing a GUI Application. The ActionListener is able to monitor a number of important events that occur in GUI Apps.

In short, all you have to do to work with an ActionListener in Java is:

  • Create an ActionListener instance.
  • Override the methods that correspond to the events that you want to monitor about the components e.g, actionPerformed and customize as you wish the handling of the respective events. Now every time one of these events occurs, the corresponding method will be executed.
  • Use addActionListener to add the ActionListener to a specific component.

Let’s take a closer look a the code snippet that follows:

package com.javacodegeeks.snippets.desktop;

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Frame;
import java.awt.TextArea;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
 
public class ActionListener {
 
  public static void main(String[] args) {
 
// Create frame with specific title
 
Frame frame = new Frame("Example Frame");
 
// Create a component to add to the frame; in this case a text area with sample text
 
final TextArea textArea = new TextArea("Click button to handle button  clicks...");
 
// Create a component to add to the frame; in this case a button
 
Button button = new Button("Click Me!!");
 
// Add a action listener to determine button clicks
 
button.addActionListener(new ActionListener() {
 
    @Override
 
    public void actionPerformed(ActionEvent arg0) {
 
  textArea.setText(textArea.getText() + "nButton clicked");
 
    }
 
});
 
// Add the components to the frame; by default, the frame has a border layout
 
frame.add(textArea, BorderLayout.NORTH);
 
frame.add(button, BorderLayout.SOUTH);
 
// Show the frame
 
int width = 300;
 
int height = 300;
 
frame.setSize(width, height);
 
frame.setVisible(true);
 
  }
 
}

 
This was an example on how to work with ActionListener in Java.

Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button