Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Pretty straightforward issue. My Java AWT label is simply not showing up. Most of the following code isn't even being used (for debugging this issue).

Just a note: this is within a Frame's constructor (and yes I have added several other panels and such that work just fine). Secondly, the frame's layout has been set to null.

EDIT: NO. I DO NOT WANT TO USE SWING.

EDIT EDIT: No, really. No swing. Call me crazy, but I am not, nor will I ever, use swing for this project.

I'm stumped.

File inf = new File("instructions.txt");
        Label ilb;
        if(inf.exists())
        {
            Log.v("Loading instructions");

            try
            {
                FileInputStream fis = new FileInputStream(inf);
                byte[] insb = new byte[65535];
                fis.read(insb);
                fis.close();
                String inst = new String(insb);
                ilb = new Label("test", Label.LEFT);
                File fntfile = new File("font/pf_tempesta_seven.ttf");
                Font infnt = null;
                try {
                    FileInputStream ffis = new FileInputStream(fntfile);
                    infnt = Font.createFont(Font.TRUETYPE_FONT, ffis);
                    ffis.close();
                } catch (FontFormatException e) {
                    Log.e("Could not format LCD font!", e);
                } catch (IOException e) {
                    Log.e("Could not read LCD font file!", e);
                }

                if(infnt == null)
                    infnt = new Font("Trebuchet MS", Font.PLAIN, 8);
                else
                    infnt = infnt.deriveFont(8.0f);

                //ilb.setFont(infnt);
                //ilb.setForeground(new Color(123, 123, 123));

                //ilb.setPreferredSize(new Dimension(350, 400));
                //ilb.setSize(350, 400);

                //ilb.setLocation(580, 190);

                Log.d("adding label");
                add(ilb);

            } catch(IOException e) {
                Log.e("Could not read instructions!", e);
            }
        }else
            Log.w("Instructions file not found!");

EDIT: Sidenote, sorry for having no comments. Save me the programming-ethics lectures; I comment everything after I code it, and yes, I comment very well.

share|improve this question
1  
the frame's layout has been set to null: that's probably the reason. Don't use a null layout. – JB Nizet Mar 2 '12 at 18:22
1  
So which, if any, of those statements get written to the log? – Thomas Mar 2 '12 at 18:24
1  
Have you tried to revalidate and repaint after add the label? – Sérgio Michels Mar 2 '12 at 18:28
1  
Well, can you post when this piece of code is executed? What is the flow of your app? – Sérgio Michels Mar 2 '12 at 18:34
1  
Ok, I think that's because you are reading a file and this is delaying the display of label. Can you try just add the label, commenting the read of the file? – Sérgio Michels Mar 2 '12 at 18:39
show 15 more comments

2 Answers

1) for todays GUI use Swing JComponents (starts with J) rather than prehistoric AWT Label

2) for your issue could be better use JTextArea with method append()

3) you have got issues with Concurency (in Swing) AWT / Swing is single threaded and all output to the GUI must be wrapped into invokeLater

4) for better help sooner you have edit your question with SSCCE

share|improve this answer
I thought I had a comment in there about swing, but I guess I left it out. I have it AWT for a reason. No swing. – Qix Mar 2 '12 at 18:25
And no, it's not a concurrency issue. That has nothing to do with it. – Qix Mar 2 '12 at 18:26
Also, I prefer to format my questions just like I have it. I preferred to have the dead code in there to see if it's another issue that I'm not focusing on, just in case. Thanks anyway. – Qix Mar 2 '12 at 18:27
To expand on the concurrency statement: I have no other threads running, and this code is clearly run in that window's schedule. – Qix Mar 2 '12 at 18:55
Also, while AWT's Label might be "prehistoric", it is also the only Label that is supported across all platforms for all devices. Swing is a convenience library located within javax (which should have been your first hint) that provides an extended UI based solely on layouts and pre-packaged themes. This is exactly what I was trying to get away from, so excuse me for using basic controls, especially when I know exactly which computer/OS it will be run on. Using AWT !== idiocy. – Qix Mar 2 '12 at 19:01
show 4 more comments
up vote 0 down vote accepted

As @JBNizet suggested, null layouts don't work with all AWT components.

I was thrown off since my Panels were positioned just fine with a null layout on my Frame, whereas Labels require a basic layout in order to display. I was tempted to go as far as saying all other components had the same 'feature', but another part of my code proved that point wrong:

// Load Image
        Log.v("Loading header image");
        _iBG = new ImageIcon("img/hpcount_top_bg.png").getImage();

        // Set size
        setSize(1024, 152);
        setPreferredSize(new Dimension(1024, 152));

        // Set position
        setLocation(0, 0);

        // Set visible
        setVisible(true);

        // Set layout
        setLayout(null);

        // Add children
        add(new Exit()); // Exit extends java.awt.Button

The above code (which is located within the constructor of a class extending java.awt.Panel) works perfectly.

My workaround is to put the label inside another Panel with a layout (messy, but it works) and position that panel within the Frame absolutely to achieve the same effect.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.