- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个带有测验元素的程序,当用户得到错误的答案时,会给出反馈。问题 JFrame 由具有实际问题的 JLabel 和 4 个具有不同选项(名为 rad1、rad2、rad3、rad4)的 JRadioButton 组成。我想做的是,如果用户得到错误的答案,具有正确答案的单选按钮的背景颜色将变为绿色,而具有用户给出的答案的单选按钮的背景颜色将变为红色。
这是我用来确定哪个答案是正确的 FOR 循环:
private void btnSubmitActionPerformed(java.awt.event.ActionEvent evt) {
System.out.println("Submit Clicked");
//figures out what choice the user selected
String correctAnswer = questions.get(current).getAnswer();
int numChoice = -1;
String choice = "";
boolean answered = false;
if (rad1.isSelected()) {
numChoice = 0;
answered = true;
choice = rad1.getText();
} else if (rad2.isSelected()) {
numChoice = 1;
answered = true;
choice = rad2.getText();
} else if (rad3.isSelected()) {
numChoice = 2;
answered = true;
choice = rad3.getText();
} else if (rad4.isSelected()) {
numChoice = 3;
answered = true;
choice = rad4.getText();
} else { //user didn't pick a choice
JOptionPane.showMessageDialog(null, "You didn't answer the question, try again!");
}
if (choice.equals(correctAnswer)) {
score++;
System.out.println("score++");
} else {
//figures out which of the answers was correct
rad1.setBackground(Color.RED);
for (int i = 0; i < 4; i++) {
if (questions.get(current).getChoices()[i].equals(correctAnswer)) {
System.out.println(correctAnswer);
System.out.println(i);
//me trying to see if it will change if I put it outside the switch
//confirmed that it will not.
rad1.setBackground(Color.RED);
switch (i) {
case 0:
rad1.setBackground(new Color(51, 204, 51));
break;
case 1:
rad2.setBackground(new Color(51, 204, 51));
break;
case 2:
rad3.setBackground(new Color(51, 204, 51));
break;
case 3:
rad4.setBackground(new Color(51, 204, 51));
break;
}
break;
}
}
switch (numChoice) {
case 0:
rad1.setBackground(new Color(153, 0, 0));
break;
case 1:
rad2.setBackground(new Color(153, 0, 0));
break;
case 2:
rad3.setBackground(new Color(153, 0, 0));
break;
case 3:
rad4.setBackground(new Color(153, 0, 0));
break;
}
}
//loads next question
//loads the next question
if (current < 10) {
updateFrame();
} else {
//ends the quiz
}
}
我已经使用 .setBackground() 方法一段时间了,如果我将 print 语句放入 case block 中,它们会执行,但不会发生着色。我错过了什么愚蠢的事情吗?
谢谢
编辑:添加了更多代码以查看 FOR 循环位于 btnSubmitActionPerformed() 方法内。当用户单击按钮时,将判断他们的答案并更改单选按钮的颜色。
最佳答案
您希望代码过于复杂且不必要。我自己,我会尝试“OOP-ify”事物来降低圈复杂度并拥有
List<String>
对于不正确的答案。 public List<String> getShuffledAnswers()
返回一个字符串列表,其中包含所有答案,无论是正确的还是错误的,都在自己的列表中打乱,testAnswer(String test)
,并且测试返回 true 等于正确答案。 然后我创建一个名为 QuestionPanel 的 JPanel
例如:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.swing.AbstractAction;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.ButtonModel;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.SwingUtilities;
@SuppressWarnings("serial")
public class TestQuestions extends JPanel {
private static final Question TEST_QUESTION = new Question("Select the Correct Answer", "This answer is correct",
"Incorrect Answer 1", "Incorrect Answer 2", "Incorrect Answer 3");
private QuestionPanel questionPanel = new QuestionPanel();
public TestQuestions() {
questionPanel.setQuestion(TEST_QUESTION);
JButton testAnswerBtn = new JButton(new AbstractAction("Test Answer") {
@Override
public void actionPerformed(ActionEvent e) {
boolean isCorrect = questionPanel.isCorrectAnswerSelected();
String message = "";
if (isCorrect) {
message = "Correct answer selected!";
} else {
message = "Incorrect answer selected!";
}
JOptionPane.showMessageDialog(TestQuestions.this, message);
questionPanel.displayCorrectWrongAnswers();
}
});
JButton clearAllBtn = new JButton(new AbstractAction("Clear All") {
@Override
public void actionPerformed(ActionEvent e) {
questionPanel.clearAll();
questionPanel.clearSelection();
}
});
JPanel btnPanel = new JPanel(new GridLayout(1, 0, 5, 5));
btnPanel.add(testAnswerBtn);
btnPanel.add(clearAllBtn);
setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
setLayout(new BorderLayout(5, 5));
add(questionPanel, BorderLayout.CENTER);
add(btnPanel, BorderLayout.PAGE_END);
}
private static void createAndShowGui() {
JFrame frame = new JFrame("TestQuestions");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new TestQuestions());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
@SuppressWarnings("serial")
class QuestionPanel extends JPanel {
private static final Color CORRECT_ANSWER_SELECTED_COLOR = new Color(151, 255, 151);
private static final Color CORRECT_ANSWER_NOT_SELECTED_COLOR = new Color(151,151, 255);
private static final Color INCORRECT_ANSWER_SELECTED_COLOR = new Color(255, 151, 151);
private Question question;
private JLabel questionTextLabel = new JLabel();
private List<JRadioButton> answerButtonList = new ArrayList<>();
private JPanel answerPanel = new JPanel(new GridLayout(0, 1));
private ButtonGroup buttonGroup = new ButtonGroup();
public QuestionPanel() {
setLayout(new BorderLayout());
add(questionTextLabel, BorderLayout.PAGE_START);
add(answerPanel, BorderLayout.CENTER);
}
public void setQuestion(Question question) {
this.question = question;
questionTextLabel.setText(question.getQuestionText());
answerPanel.removeAll();
answerButtonList.clear();
buttonGroup = new ButtonGroup();
for (String answer : question.getShuffledAnswers()) {
JRadioButton rBtn = new JRadioButton(answer);
rBtn.setActionCommand(answer);
answerButtonList.add(rBtn);
buttonGroup.add(rBtn);
answerPanel.add(rBtn);
}
}
public boolean isCorrectAnswerSelected() {
ButtonModel model = buttonGroup.getSelection();
if (model == null) {
return false; // nothing selected
} else {
return question.checkAnswer(model.getActionCommand());
}
}
public void clearAll() {
for (JRadioButton jRadioButton : answerButtonList) {
jRadioButton.setOpaque(false);
jRadioButton.setBackground(null);
}
}
public void clearSelection() {
buttonGroup.clearSelection();
}
public void displayCorrectWrongAnswers() {
clearAll();
for (JRadioButton jRadioButton : answerButtonList) {
if (jRadioButton.isSelected()) {
jRadioButton.setOpaque(true);
if (question.checkAnswer(jRadioButton.getActionCommand())) {
jRadioButton.setBackground(CORRECT_ANSWER_SELECTED_COLOR);
} else {
jRadioButton.setBackground(CORRECT_ANSWER_NOT_SELECTED_COLOR);
}
} else if (question.checkAnswer(jRadioButton.getActionCommand())) {
jRadioButton.setOpaque(true);
jRadioButton.setBackground(INCORRECT_ANSWER_SELECTED_COLOR);
}
}
}
}
class Question {
private String questionText;
private String correctAnswer;
private List<String> incorrectAnswerList = new ArrayList<>();
public Question(String questionText, String correctAnswer, String... incorrectAnswers) {
this.questionText = questionText;
this.correctAnswer = correctAnswer;
for (String incorrectAnswer : incorrectAnswers) {
incorrectAnswerList.add(incorrectAnswer);
}
}
public String getQuestionText() {
return questionText;
}
public String getCorrectAnswer() {
return correctAnswer;
}
public List<String> getShuffledAnswers() {
List<String> answers = new ArrayList<>(incorrectAnswerList);
answers.add(correctAnswer);
Collections.shuffle(answers);
return answers;
}
public boolean checkAnswer(String test) {
return correctAnswer.equalsIgnoreCase(test);
}
}
关于java - .setBackground() 方法不适用于 JRadioButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34167926/
我不认为这是重复的,因为其他问题与 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
我是一名优秀的程序员,十分优秀!