Detecting a JRadioButton state change

前端 未结 2 1133
栀梦
栀梦 2020-12-13 13:36

How can I detect when a JRadioButton is changed from \'unselected\' to \'selected\' when clicked with the mouse? I\'ve tried using an ActionListener on the button, but that

相关标签:
2条回答
  • 2020-12-13 14:20

    I believe you want to add a ChangeListener implementation.

    0 讨论(0)
  • 2020-12-13 14:33

    Look at JRadioButton.addItemListener()

    EDIT: It is unlikely you want to use a changeListener as it fires multiple times per click. An itemListener fires only once per click. See here

    EDIT2: Just to expand on this, an actionListener on a jradioButton will fire every time a user clicks on it, even if it is already selected. if that's what you want, fine, but I find it annoying. I only want to be notified it it is selected or deselected.

    A ChangeListener will fire for all sorts of things, meaning your listener will receive 5 or more events per click. Not good.

    An itemlistener will fire only if the selected or deselected state changes. This means that a user can click on it multiple times and it will not fire if it doesn't change. In your handler method you will have to have an if block checking for SELECTED or DESELECTED status and do whatever there:

    @Override
    public void itemStateChanged(ItemEvent e) {
        if (e.getStateChange() == ItemEvent.SELECTED) {
            // Your selected code here.
        }
        else if (e.getStateChange() == ItemEvent.DESELECTED) {
            // Your deselected code here.
        }
    }
    

    It just works better because you know that if you are in the method then the radio button has either just been selected or deselected, not that the user is just banging on the interface for some unknown reason.

    0 讨论(0)
提交回复
热议问题