- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常简单的程序,要求用户单击其背景颜色与较大面板(又名显示面板)的背景颜色相匹配的四个面板之一,该面板随机将其背景颜色设置为四个面板之一。如果面板错误点击Joptionpane就出来了;显示面板背景暂时设置为黑色。如果单击"is",显示面板应重新设置其背景颜色。问题是我并不总是看到背景被更新。相反,有时背景保持黑色。 ...更令人困惑的是,如果您将另一个窗口拖到该程序的窗口上,它会保持黑色,如果您看到颜色在显示面板上移动时部分更新,或者只是切换到不同的窗口并重新聚焦,那么您会看到完成更新的背景颜色。
那么为什么 setMethod 会被调用,但只是偶尔由幕后的 Paint 方法执行呢?为什么类型转换其他 window 或框架使其可见?它与正在处理的鼠标单击事件有什么关系吗?
我很感谢对这一切的任何解释,谢谢大家
public class MainPanel extends JPanel{
Subpanel panel1;
Subpanel panel2;
Subpanel panel3;
Subpanel panel4;
Subpanel displaypanel;
Color[] color; //stores all the colors that display on the subpanels
public static void main(String[] args) {
JFrame window=new JFrame("This is a test");
window.setContentPane(new MainPanel());
window.setLocation(100,30);
window.setSize(600,500);
window.setVisible(true);
}
public MainPanel(){
setLayout(new FlowLayout(FlowLayout.CENTER,80,30));
panel1= new Subpanel();
panel2= new Subpanel();
panel3= new Subpanel();
panel4= new Subpanel();
//the big sub panel
displaypanel= new Subpanel();
color=new Color[4];
color[0]=Color.BLUE;
color[1]=Color.RED;
color[2]=Color.YELLOW;
color[3]=Color.GREEN;
setBackground(Color.GRAY);
displaypanel.setBackground(displayRandomColor());
panel1.setBackground(color[0]);
panel2.setBackground(color[1]);
panel3.setBackground(color[2]);
panel4.setBackground(color[3]);
displaypanel.setPreferredSize(new Dimension(400,250));
panel1.setPreferredSize(new Dimension(70,70));
panel2.setPreferredSize(new Dimension(70,70));
panel3.setPreferredSize(new Dimension(70,70));
panel4.setPreferredSize(new Dimension(70,70));
add(displaypanel);
add(panel1);
add(panel2);
add(panel3);
add(panel4);
}
public void paintComponent(Graphics g){
super.paintComponent(g);
}
public Color displayRandomColor(){
Color i=Color.WHITE;
switch ((int)(Math.random()*4)+1){
case 1:
i= Color.YELLOW;
break;
case 2:
i= Color.BLUE;
break;
case 3:
i= Color.GREEN;
break;
case 4:
i= Color.RED;
}
return i;
}
public class Subpanel extends JPanel{
public Subpanel(){
this.addMouseListener(new MouseAdapter(){
public void mouseClicked(MouseEvent evt){
Component source=(Component)evt.getSource();
if((source.getBackground()).equals(displaypanel.getBackground())){
//do nothing for this test..
}
else{
displaypanel.setBackground(Color.BLACK);
//ask user to reset the background color
//**the following 2 lines introduces the problem
if(JOptionPane.showOptionDialog(null,"click Yes to see a new Color","Incorrect",JOptionPane.YES_NO_OPTION,JOptionPane.PLAIN_MESSAGE,null,null,null)==JOptionPane.YES_OPTION){
displaypanel.setBackground(displayRandomColor());
}
}
}
});
} //end of constructor
public void paintComponent(Graphics g){
super.paintComponent(g);
}
}
}
最佳答案
当synchronized correctly时,您的程序运行得相当好。 。一些注意事项:
在程序执行时尽可能早地初始化对象一次。
使用Random
实例获取随机整数;请注意 displayRandomColor()
的实现要简单得多。
private Color displayRandomColor() {
return color[r.nextInt(color.length)];
}
Swing GUI 对象应该仅在 event dispatch thread 上构建和操作。 .
当您确实想要覆盖 getPreferredSize()
时,请勿使用 setPreferredSize()
],如建议 here .
使用layouts和 pack()
封闭窗口。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Random;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
public class MainPanel extends JPanel {
private static final Random r = new Random();
private final JPanel displayPanel;
private Color[] color = {Color.RED, Color.GREEN, Color.BLUE, Color.YELLOW};
private Subpanel panel1 = new Subpanel(color[0]);
private Subpanel panel2 = new Subpanel(color[1]);
private Subpanel panel3 = new Subpanel(color[2]);
private Subpanel panel4 = new Subpanel(color[3]);
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame window = new JFrame("This is a test");
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.add(new MainPanel());
window.pack();
window.setLocationRelativeTo(null);
window.setVisible(true);
}
});
}
public MainPanel() {
setLayout(new BorderLayout());
setBackground(Color.GRAY);
//the big sub panel
displayPanel = new JPanel() {
@Override
public Dimension getPreferredSize() {
return new Dimension(320, 240);
}
};
displayPanel.setBackground(displayRandomColor());
//the control panel
JPanel p = new JPanel();
p.add(panel1);
p.add(panel2);
p.add(panel3);
p.add(panel4);
add(displayPanel, BorderLayout.CENTER);
add(p, BorderLayout.SOUTH);
}
private Color displayRandomColor() {
return color[r.nextInt(color.length)];
}
public class Subpanel extends JPanel {
public Subpanel(Color color) {
this.setBackground(color);
this.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent evt) {
Component source = (Component) evt.getSource();
if ((source.getBackground()).equals(displayPanel.getBackground())) {
System.out.println(source.getBackground());
} else {
displayPanel.setBackground(Color.BLACK);
if (JOptionPane.showOptionDialog(null,
"Click Yes to see a new Color", "Incorrect",
JOptionPane.YES_NO_OPTION, JOptionPane.PLAIN_MESSAGE,
null, null, null) == JOptionPane.YES_OPTION) {
displayPanel.setBackground(displayRandomColor());
}
}
}
});
}
@Override
public Dimension getPreferredSize() {
return new Dimension(70, 70);
}
}
}
关于java - 为什么在这个简单的程序中 setBackground 不立即并一致地更新背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35663241/
我不认为这是重复的,因为其他问题与 JButtons 和 JPanels 有关。 我想知道为什么 java 中的以下内容不能像人们想象的那样工作: import javax.swing.JApplet
我正在用 Java 制作游戏,目前设置的背景不起作用,但设置的前景有效。这是我的主类代码: import java.awt.*; import javax.swing.*; public class
我是 Java swing 库的新手,目前在设置 JFrame 的背景时遇到了一些问题。 我已阅读 jframe-setbackground-not-working-why和其中的链接,但它似乎不适合
import javax.swing.JApplet; import java.awt.*; public class Snowman extends JApplet { //------------
希望对你来说是一个简单的... 我一直在尝试设置 QtListWidgetItem 的背景颜色,但运气不佳——这可能是因为我没有正确使用 QListWidgetItem...在我的测试代码中,我可以设
我想知道为什么 setBackground() 方法实际上没有使背景变黑。我感觉这与实现 JApplet 的类有关,而不是 Applet,但我无法弄清楚具体细节。这真的很困扰我。如有任何帮助,我们将不
当您创建JFrame实例时,您可以从此实例使用setBackground方法。但是,无论您尝试在那里放置什么颜色,您都会收到灰色背景颜色。 发生这种情况(据我所知),因为默认的 JPanel 实例是在
我一直在到处寻找解决我的问题的方法,但没有找到任何有效的方法:要求:在 jButton“颜色!”的红色和绿色背景颜色之间切换 状态:当我第一次单击该按钮时,它会变为红色,并且在下次单击时不会变为绿色。
我有一个非常简单的程序,要求用户单击其背景颜色与较大面板(又名显示面板)的背景颜色相匹配的四个面板之一,该面板随机将其背景颜色设置为四个面板之一。如果面板错误点击Joptionpane就出来了;显示面
我有一个图像按钮: 这是从我的主要 Activity 开始的单独 Activity 的一部分: Intent intent = new Intent(this, BookRead.class); s
我正在尝试为我的 swing UI 的某些区域着色,但感觉受限于使用 .setBackground(Color.//color here 有什么方法可以在其中使用更具体和独特的颜色(甚至没有棕色)的十
我正在编写一个带有测验元素的程序,当用户得到错误的答案时,会给出反馈。问题 JFrame 由具有实际问题的 JLabel 和 4 个具有不同选项(名为 rad1、rad2、rad3、rad4)的 JR
我有一个使我成为图像按钮的类(class)。这个图像按钮包含一个 ImageView 、两个 TextView 和一个按钮。 我在 ImageView 中放置了一些宽度,如果我将一个图像放入 xml
我在一本书中看到过这个例子,工作正常,但出现的唯一问题是背景在第一次调用 Paint 时没有变黑,当 clearCounter 变为 == 5 时,然后屏幕被清除并再次绘画开始时,背景变为黑色。 pu
我已经花了 6 个小时试图解决这个问题。我终于可以根据需要更改颜色,但我只想保留组合框箭头的默认颜色。 这是代码... 注意:编辑后的代码编译时没有图片显示的背景... import org.apac
我尝试设置 jbutton 的背景颜色,但不起作用?看图片。为什么不起作用?如何修复? 我想要红色背景:-) save_button.setForeground(Color.red);
我是 Android 新手,遇到以下问题: 我想将 TextView 的背景设置为 #333。我用过: TextView title = new TextView(this); ti
JPanel.setBackground方法不执行任何操作(尽管 opaque 属性为 true )如果 super.paintComponent父方法未被调用。 我在这里阅读了很多关于此问题的类似问
我有一个名为 MainUI 的类,它扩展了 JFrame,它具有以下代码: //Constructor public MainUI(){ // components/panels are alread
我最近了解到我可以为 JTable 创建自定义 DefaultTableCellRenderer 类。 但是,我的代码只为整行着色,而不是我想要根据条件着色的特定列/单元格。 如何在我创建的 Defa
我是一名优秀的程序员,十分优秀!