Как разместить компоненты в средней сетке в GridLayout Manager? - PullRequest
0 голосов
/ 13 декабря 2018

Я делаю приложение для часов, но я не могу заставить часы находиться посередине окна (независимо от размера окна).Я подумываю использовать диспетчер GridLayout, но не знаю, как разместить его в средней сетке.Я искал StackOverFlow, и кажется, что никто не имеет ответа на этот вопрос.Буду признателен за помощь.

public ClockGUI()
{
    thread = new Thread(this);
    timeFormat = new SimpleDateFormat("HH:mm:ss").format(new Date());
    mainPanel();
    setup();
    thread.start();
}
private void mainPanel()
{
    mainPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
    digitalDisplay = new JLabel(timeFormat);
    digitalDisplay.setFont(new Font("Arial", Font.BOLD, 100));
    digitalDisplay.setPreferredSize(new Dimension(500, 250));
    digitalDisplay.setForeground(Color.CYAN);
    startBut = new JButton("Start");

    mainPanel.add(digitalDisplay);
    mainPanel.add(startBut);
    mainPanel.setBackground(Color.BLACK);
}
private void setup()
{
    this.setTitle("Clock");
    this.add(mainPanel);
    this.setSize(600, 300);
    this.setBackground(Color.BLACK);
    this.setResizable(false);
    this.setVisible(true);
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
@Override
public void run()
{
    for (int i = 0; i < 60; i++)
    {
        timeFormat = new SimpleDateFormat("HH:mm:ss").format(new Date());
        digitalDisplay.setText(timeFormat);
        mainPanel.removeAll();
        mainPanel.validate();
        mainPanel.repaint();
        mainPanel.add(digitalDisplay);
        mainPanel.validate();
        mainPanel.repaint();
        try
        {
            Thread.sleep(1000);

        } catch (InterruptedException e)
        {
            e.getStackTrace();
        }
    }
}

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