使用BorderLayout的我的JPanel运行良好,直到我决定添加一个在其文本中包含HTML的JLabel。我花了几个小时与那些遇到同样问题的人进行双重检查,但没有修复。当我注释掉处理这个JLabel的线条时,一切正常。我尝试使用JTextArea,但我遇到了同样的问题。
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Gui extends JFrame implements KeyListener {
JFrame jFrame;
JPanel backgroundPanel;
JLabel multiLineTextLabel;
JLabel statusLabel;
int xValue = 1000;
Gui() {
jFrame = new JFrame("Frame Name");
jFrame.setSize(1200, 600);
jFrame.setLayout(new BorderLayout());
jFrame.setVisible(true);
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
backgroundPanel = new JPanel();
backgroundPanel.setBackground(Color.BLACK);
String htmlString = "<html>Word1<br>Word2</html>";
multiLineTextLabel = new JLabel(htmlString);
statusLabel = new JLabel("Some Text");
jFrame.add(backgroundPanel, BorderLayout.CENTER);
jFrame.add(multiLineTextLabel, BorderLayout.EAST);
jFrame.add(statusLabel, BorderLayout.SOUTH);
jFrame.setFocusable(true);
jFrame.addKeyListener(this);
}
public void keyTyped(KeyEvent e)
{
//Won't be using
}
public void keyPressed(KeyEvent e)
{
int keyCode = e.getKeyCode();
if(keyCode == KeyEvent.VK_LEFT)
{
xValue -= 20;
statusLabel.setText("You are clicking left");
}
else if(keyCode == KeyEvent.VK_RIGHT)
{
xValue += 20;
statusLabel.setText("You are clicking right"); //You are "pressing" right
}
else if(keyCode == KeyEvent.VK_A)
{
statusLabel.setText("You are clicking A"); //You are "pressing" A
}
else if(keyCode == KeyEvent.VK_S)
{
statusLabel.setText("You are clicking S");
}
else if(keyCode == KeyEvent.VK_ESCAPE)
{
jFrame.setVisible(false);
jFrame.dispose();
}
else if(keyCode == KeyEvent.VK_P)
{
String positionString = new String("Your position/XValue = " + xValue);
statusLabel.setText(positionString);
}
}
public void keyReleased(KeyEvent e)
{
//Won't be using
}
public static void main(String[] args)
{
Gui go = new Gui();
}
}
答案 0 :(得分:2)
您的代码执行正确,但我猜您不知道点击和按下按钮之间的区别,因为在keyPressed
功能中您说“您正在点击”哪个doe鼻涕有道理。你应该把它变成你正在推右箭头。
您只需要按下右,左,S或A按钮,即可看到您的代码正在执行您想要的操作。
另一点,在你没有将multiLineTextLabel
添加到JFrame
之前,但是当我告诉你时,一切都按预期工作
关于JTextArea
的一点,你可以这样做
String htmlString = "<html>Word1\n<br>Word2</html>";
JTextArea jta = new JTextArea(htmlString);
jFrame.add(jta, BorderLayout.EAST);
所以你的HTML代码可以按你的需要工作
答案 1 :(得分:0)
解决方案是在最后设置框架可见。我意外地设置可见,然后添加所有组件。