- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这个程序应该允许用户通过从三组单选按钮中进行选择来“设计”房屋,并在同一窗口中显示房屋的最新(每次进行更改时刷新)总成本,但我似乎无法获得实际显示除 $0.0 或 null 之外的任何内容的成本,我很确定问题出在我使用 Action 监听器的方式上。任何有关如何解决此问题的帮助将不胜感激。
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jmynewhome;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
*
* @author Peter
*/
public class JMyNewHome extends JFrame{
private JPanel panel;
private double cost1;
private double cost2;
private double cost3;
private JLabel messageLabel;
private JRadioButton aspen;
private JRadioButton brittany;
private JRadioButton colonial;
private JRadioButton dartmoor;
private ButtonGroup house;
private JRadioButton bedroom2;
private JRadioButton bedroom3;
private JRadioButton bedroom4;
private ButtonGroup bedroom;
private JRadioButton noGarage;
private JRadioButton garage1;
private JRadioButton garage2;
private JRadioButton garage3;
private ButtonGroup garage;
private String total;
public JMyNewHome() {
setTitle("My new home");
setSize(500,500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
messageLabel = new JLabel("$"+ total);
buildPanel();
add(panel);
setVisible(true);
}
private void buildPanel()
{
aspen = new JRadioButton("Aspen");
brittany = new JRadioButton("Brittany", true);
colonial = new JRadioButton("Colonial");
dartmoor = new JRadioButton("Dartmoor");
bedroom2 = new JRadioButton("2 bedrooms", true);
bedroom3 = new JRadioButton("3 bedrooms");
bedroom4 = new JRadioButton("4 bedrooms");
noGarage = new JRadioButton("No garage");
garage1 = new JRadioButton("1 car garage");
garage2 = new JRadioButton("2 car garage");
garage3 = new JRadioButton("3 car garage");
house = new ButtonGroup();
bedroom = new ButtonGroup();
garage = new ButtonGroup();
house.add(aspen);
house.add(brittany);
house.add(colonial);
house.add(dartmoor);
bedroom.add(bedroom2);
bedroom.add(bedroom3);
bedroom.add(bedroom4);
garage.add(noGarage);
garage.add(garage1);
garage.add(garage2);
garage.add(garage3);
aspen.addActionListener(new RadioButtonListener());
brittany.addActionListener(new RadioButtonListener());
colonial.addActionListener(new RadioButtonListener());
dartmoor.addActionListener(new RadioButtonListener());
bedroom2.addActionListener(new RadioButtonListener());
bedroom3.addActionListener(new RadioButtonListener());
bedroom4.addActionListener(new RadioButtonListener());
noGarage.addActionListener(new RadioButtonListener());
garage1.addActionListener(new RadioButtonListener());
garage2.addActionListener(new RadioButtonListener());
garage3.addActionListener(new RadioButtonListener());
panel = new JPanel();
panel.add(aspen);
panel.add(brittany);
panel.add(colonial);
panel.add(dartmoor);
panel.add(bedroom2);
panel.add(bedroom3);
panel.add(bedroom4);
panel.add(noGarage);
panel.add(garage1);
panel.add(garage2);
panel.add(garage3);
panel.add(messageLabel);
}
private class RadioButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
total = "";
cost1 = 0.0;
cost2 = 0.0;
cost3 = 0.0;
if (e.getSource() == aspen)
cost1 = 100000;
else if(e.getSource() == brittany)
cost1 = 120000;
else if(e.getSource() == colonial)
cost1 = 180000;
else if(e.getSource() == dartmoor)
cost1 = 250000;
if (e.getSource() == bedroom2)
cost2 = 10500 * 2;
else if(e.getSource() == bedroom3)
cost2 = 10500 * 3;
else if(e.getSource() == bedroom4)
cost2 = 10500 * 4;
if(e.getSource() == noGarage)
cost3 = 0;
else if(e.getSource() == garage1)
cost3 = 7775;
else if(e.getSource() == garage2)
cost3 = 7775 * 2;
else if(e.getSource() == garage3)
cost3 = 7775 * 3;
total = Double.toString(cost1 + cost2 + cost3);
}
}
public static void main(String[] args) {
new JMyNewHome();
}
}
最佳答案
你需要
messageLabel.setText(total);
在actioPerformed()
结束时
您已更改 actioPerformed()
中的总计
,但从未将该总计设置为标签
public void actionPerformed(ActionEvent e){
...
...
total = Double.toString(cost1 + cost2 + cost3);
messageLabel.setText("$" + total);
}
编辑:使用下面的代码,您将重置总计
total = Double.toString(cost1 + cost2 + cost3);
你想要这个
total += Double.toString(cost1 + cost2 + cost3);
关于java - 带有 Action 监听器的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20184017/
HTML 部分,只是我代码的一部分: HP: SP: EA: ED: PA: PD:
我有这个简单的脚本。我正在尝试获取选中的值并将它们添加到禁用输入框中的运行总计中。我知道它正在被选中,但它没有更新到输入框,我不确定为什么。谁能帮帮我? function updateF
我在使用自定义背景的单选按钮/复选框时遇到了问题。我在这里设计了它们的样式:Quick Tip: Easy CSS3 Checkboxes and Radio Buttons .主要部分是input在
我可以预见地读取 jQueryUI 单选按钮的值,但是,我无法以编程方式设置它。无论我使用哪种方法更改单选按钮的值,jQueryUI 界面都不会更新其界面。 Yes No
没有展开时 点击展开之后 <div class="flashread_item_box_time"> <span class="
这里是 JQuery 新手。 我有一个大约有 16 个字段的搜索表单,其中大部分是文本框。其余的都是下拉菜单。我在这些字段下方有 3 个单选按钮。当选择第一个时,表单中的某些字段应被禁用。当选择第二个
我目前正在构建一个 Fiori 应用程序用于查看事件(票证)。我必须创建一个饼图,其中包含票证的所有不同状态。当我单击图表的一部分时,它会将我带到包含该状态的所有票证的列表。我可以选择饼图的多个状态,
此代码将在使用 reloadData 刷新 UITableView 后恢复单元格选择: NSIndexPath *selectedIndexPath = [self.tableView indexPa
我正在尝试对 UITableView 单元格进行自定义选择。为此,我在我的单元格上方创建了 UIView,它现在在触摸时出现/消失。但问题是当我按下单元格选择时出现。如果那时我选择任何其他行,它也会被
我所有的复选框、单选框和文本输入都在 ID 的末尾附加了“_boom”。我想抓取这些 id 的页面,检测更改以查看其中是否有任何一个与其原始状态不同,如果是,则将 CSS 应用于页面上名为“保存”的按
我正在寻找一种方法,使多选列表框应显示为普通的单选组合框,但在单击时它应作为允许多选的列表框,如下所示,如电子表格中所示。我正在寻找 CSS HTML 和 javascript 而非 Jquery 中
我有一个 HTML 我想显示为“列表框”(一个同时显示多个元素的框,而不是下拉框)。但是,我只想允许选择一个元素。我还想将盒子的高度(通过 CSS)设置为其容器大小的 100%。 这三件事似乎是相互排
我有一个包含三个部分的付款表格。基本上,第一个是带有乘数的“单选”列表,第二个是带有设置值的“复选框”列表,第三个是带有乘数的下拉列表 ==> (jsfiddle) .为清楚起见,我插入了一个文本框来
我想删除单选按钮,只显示是或否标签。为此,我隐藏了 radio 输入并使用 css3 选择器 (:checked + label) 根据选择更改背景颜色。但由于某种原因,这不起作用。 HTML(来自
我正在使用这个插件http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/#single对于多选,并且希望也可以在同一
我收到了这段代码,但我似乎无法正常工作,我查看了之前的问题,但找不到任何与之完全相同的代码。也许这完全是错误的,应该重新开始? 我想要做的是在选择单选按钮时显示一个 div。这是我的代码: jQue
我试图在用户点击输入(单选、复选框或选择)时移除焦点背景,但它不起作用。这些是我放在元素上的样式: .form-holder input[type="radio"]:focus, .form-
我正在使用 Bootstrap 4 并想使用单选按钮和复选框按钮组,但按钮显示的是实际的单选按钮和复选框 UI 元素,如下所示: 上面的例子直接摘自文档。我试过删除并重新安装 Bootstrap 4,
我正在使用 Collection View 进行水平滚动。它工作得很好。现在我想为选择任何单元格设置任何效果。所以,我写了这段代码” func collectionView(collectionVi
我有一个按钮组,其中包含必须充当单选按钮的几个项目。我还需要将它们分成几行并跨越容器的整个宽度。 为此,我使用了 Bootstrap 的类 btn-group-justified ,然后我拆分 元素分
我是一名优秀的程序员,十分优秀!