Setting the size of a button and action listener

435 Views Asked by At

Problem 1:

I'm trying to set the size of my button, but doesn't seem to change and instead always fills the entire screen which isn't what I want.

Problem 2:

When I add the public void actionPerformed1(ActionEvent e) with my message, it doesn't seem to show up. Maybe it's because of the button filling the entire space up, but I don't really know.

Here is the code for the buttons:

import java.awt.event.*;

import javax.swing.*;
import java.awt.*;
   public class HockeyGame extends JFrame implements 
      ActionListener, KeyListener, Runnable, WindowListener  //, ActionListener
        {
        Thread t;
        int xpuck, ypuck,xspeed,yspeed,gx,gy,redx2,redy2,lg,rg, redscore, bluescore,
            redx,redy, gx2, gy2, bluex, bluey,bluex2,bluey2,rg2,lg2;
        //int SQUARE_SIZE=10;
        public HockeyGame ( ) {

            }

        public static void main ( String [ ] commandLine ) {
            HockeyGame hg=new HockeyGame();
            hg.init();
        }

        public void actionPerformed1(ActionEvent e) {
            JOptionPane.showMessageDialog(null,"testing");
        }
        public void init() {
            Button b;           
            b = new Button("Click me");
            b.addActionListener(this); 
            b.setSize(40, 40);
            add(b);
            t=new Thread(this);
            this.addKeyListener(this);
            this.setFocusable(true);
            setSize(700,700);
            setVisible ( true );

Any help is appreciatedasd

1

There are 1 best solutions below

0
On

Start with simple exercises to make you strong in the basics.

1) Your Button fills up the space because the default layout of your content pane is Border Layout. Set the layout to Flow Layout or any other.

2) The function name should be exactly the same as that defined in Action Listener.


public void actionPerformed(ActionEvent e)
{}

None of what I said will make sense until you are strong with the basics.