JButton settext的具体位置

时间:2014-03-05 03:57:56

标签: java swing layout jbutton settext

我有一个带有图像图标的JButton,我需要定位文本。 有没有办法将JButton的文本定位在特定位置而不是使用CENTER,LEADING,TOP等?

3 个答案:

答案 0 :(得分:2)

我以前从未在JButton上尝试过,但也许你可以在按钮上添加一个JLabel作为组件。然后,您可以使用布局管理器或边框来更恰当地定位标签。

以下是使用Icon添加组件到JLabel的一些示例:

import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;

public class LabelImageText extends JPanel
{
    public LabelImageText()
    {
        JLabel label1 = new JLabel( new ColorIcon(Color.ORANGE, 100, 100) );
        label1.setText( "Easy Way" );
        label1.setHorizontalTextPosition(JLabel.CENTER);
        label1.setVerticalTextPosition(JLabel.CENTER);
        add( label1 );

        //

        JLabel label2 = new JLabel( new ColorIcon(Color.YELLOW, 200, 150) );
        label2.setLayout( new BoxLayout(label2, BoxLayout.Y_AXIS) );
        add( label2 );

        JLabel text = new JLabel( "More Control" );
        text.setAlignmentX(JLabel.CENTER_ALIGNMENT);
        label2.add( Box.createVerticalGlue() );
        label2.add( text );
        label2.add( Box.createVerticalStrut(10) );

        //

        JLabel label3 = new JLabel( new ColorIcon(Color.GREEN, 200, 150) );
        label3.setLayout( new GridBagLayout() );
        add( label3 );

        JLabel text3 = new JLabel();
        text3.setText("<html><center>Text<br>over<br>Image<center></html>");
        text3.setLocation(20, 20);
        text3.setSize(text3.getPreferredSize());
        label3.add( text3 );

        //

        JLabel label4 = new JLabel( new ColorIcon(Color.CYAN, 200, 150) );
        add( label4 );

        JTextPane textPane = new JTextPane();
        textPane.setText("Add some text that will wrap at your preferred width");
        textPane.setEditable( false );
        textPane.setOpaque(false);
        SimpleAttributeSet center = new SimpleAttributeSet();
        StyleConstants.setAlignment(center, StyleConstants.ALIGN_CENTER);
        StyledDocument doc = textPane.getStyledDocument();
        doc.setParagraphAttributes(0, doc.getLength(), center, false);
        textPane.setBounds(20, 20, 75, 100);
        label4.add( textPane );
    }

    public static class ColorIcon implements Icon
    {
        private Color color;
        private int width;
        private int height;

        public ColorIcon(Color color, int width, int height)
        {
            this.color = color;
            this.width = width;
            this.height = height;
        }

        public int getIconWidth()
        {
            return width;
        }

        public int getIconHeight()
        {
            return height;
        }

        public void paintIcon(Component c, Graphics g, int x, int y)
        {
            g.setColor(color);
            g.fillRect(x, y, width, height);
        }
    }

    private static void createAndShowUI()
    {
        JFrame frame = new JFrame("LabelImageText");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new LabelImageText() );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible( true );
    }

    public static void main(String[] args)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                createAndShowUI();
            }
        });
    }
}

我怀疑JTExtPane示例是否可以使用按钮,因为文本窗格将拦截鼠标事件,因此当您单击文本时将无法单击该按钮。所以我会坚持使用为按钮添加标签的示例。

答案 1 :(得分:0)

西班牙语: Puedes sobreescribirelmétodosetText(String str)。

Google Traductor简体中文:您可以覆盖方法setText(String str)。

private static final String HTML_1 = "<html><body style='margin:0px 0px 0px 0px'>";
private static final String HTML_2 = "</html>";

@Override
public void setText(String txt) {
    if (txt.isEmpty()) {
        txt = "Dispositivo";
    }
    String txt2 = HTML_1 + txt + HTML_2;
    super.setText(txt2);
}

答案 2 :(得分:-1)

您可以使用setbounds方法设置按钮上文本的位置

JLabel positiongLabel = new JLabel();
positiongLabel.setBounds(100,50,300,30);

有关详细信息,请点击here