Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8305319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:05:26+00:00 2026-06-08T18:05:26+00:00

Im having this problem where my Label2 which is assigned to be a text

  • 0

Im having this problem where my Label2 which is assigned to be a text doesn’t appear on the Jframe, even though I added it. Im assuming the other Labels which I set as images are overlaping it? If that is the problem how would I go upon fixing it?

import java.awt.Dimension;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;

public class Generator extends JFrame {

    private static final long serialVersionUID = 1L;

    /**
     * Launch the application.
     */
    public static void main(final String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    final Generator frame = new Generator();
                    frame.setVisible(true);
                } catch (final Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the frame.
     */
    public Generator() {
        /*
         * @Images/Text
         */
        final ImageIcon icon = new ImageIcon("data/hover_a.png");
        final JLabel label = new JLabel(icon);

        final ImageIcon icon1 = new ImageIcon("data/background.png");
        final JLabel label1 = new JLabel(icon1);

        final ImageIcon img = new ImageIcon("data/icon.png");

        final JLabel label2 = new JLabel("Test Text");

        /*
         * @Image/Text Bounds
         */
        label.setBounds(24, 266, 240, 40);
        label1.setBounds(0, 0, 289, 330);
        label2.setBounds(0, 0, 80, 15);

        /*
         * @Image Hovers
         */
        label.addMouseListener(new MouseAdapter() {

            @Override
            public void mouseEntered(final MouseEvent evt) {
                label.setIcon(new ImageIcon("data/hover_b.png"));
            }

            @Override
            public void mouseExited(final MouseEvent evt) {
                label.setIcon(new ImageIcon("data/hover_a.png"));
            }

        });

        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setPreferredSize(new Dimension(295, 358));
        setTitle("test");
        getContentPane().setLayout(null);
        setResizable(false);
        setVisible(true);
        setIconImage(img.getImage());
        getContentPane().add(label);
        getContentPane().add(label1);
        getContentPane().add(label2);
        pack();
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:05:27+00:00Added an answer on June 8, 2026 at 6:05 pm

    You’re calling setVisible(true) before adding all your components. Don’t do this. The orde is:

    • add your components
    • call pack()
    • call setVisible(true)
    • if later you make changes then call revalidate() on the container, then repaint()
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a problem with an image and some text. I have this code:
I am having a peculiar problem with the order in which FlowLayoutPanels are added
I've having this problem with some JavaScript code. I've simplified it in the error
I'm having this problem where I keep getting this error in my console: *
I'm having this problem with the grails liferay-plugin: localhost_liferay_portlet_WEB_INF_grails_app_views_test_view_gsp: 17: expecting anything but ''\n'';
We are having this problem with a controller right now; the controller looks like
I'm having this problem on a new cruisecontrol.net install running on Windows Server 2003
So i'm having this problem. I have two tables (Oracle), one is called Destination
Hey dudes.i am having this problem while symlinking. I have successfully deployed a ruby
I've been having this problem for a while and it's driving me nuts. I'm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.