如何使图标和文本在JButton上对齐左侧

时间:2016-03-15 12:12:03

标签: java swing jbutton

我想让文字和图标仅对齐电梯侧 这是代码

import java.awt.Dimension;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class LeftSide
{
public LeftSide()
{
JFrame frame = new JFrame("Button");
JPanel panel = new JPanel();
JButton button = new JButton("Submit");
button.setPreferredSize(new Dimension(200, 30));
button.setIcon(new ImageIcon(this.getClass().getResource("submit.gif")));
panel.add(button);
frame.add(panel);
frame.setVisible(true);
}

public static void main(String[] args)
{
new LeftSide();
}

}

如果我运行此代码,我将在按钮中心的按钮上获得图标和文字,以便如何使它们左侧;

enter image description here

2 个答案:

答案 0 :(得分:3)

要将文字左对齐,请使用button.setHorizontalAlignment(SwingConstants.LEFT);

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

public class LeftSide
{
    public LeftSide()
    {
        JFrame frame = new JFrame("Button");
        JPanel panel = new JPanel();
        JButton button = new JButton("Submit");
        button.setPreferredSize(new Dimension(200, 30));
        button.setIcon(new ImageIcon(this.getClass().getResource("submit.gif")));
        button.setHorizontalAlignment(SwingConstants.LEFT);
        panel.add(button);
        frame.add(panel);
        frame.setVisible(true);
    }

    public static void main(String[] args)
    {
        new LeftSide();
    }
}

答案 1 :(得分:2)

JButton派生自AbstractButton,它提供了一种方法setHorizontalAlignment(int),它应该完全符合您的要求。使用例如SwingConstants.LEFTSwingConstants.LEADING左对齐图标和文字。 试试JavaDoc以了解更多信息。