java – 在ComboBox中为FilteredList设置谓词会影响输入

前端之家收集整理的这篇文章主要介绍了java – 在ComboBox中为FilteredList设置谓词会影响输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已经实现了一个ComboBox,其列表由ComboBox TextField中的输入过滤.它可以正常工作,因为你可能期望这种控件的过滤器工作.列表中显示列表中以输入文本开头的每个项目.

我只有一个小问题.如果我从列表中选择一个项目,然后尝试删除文本字段中的最后一个字符,则没有任何反应.如果我从列表中选择一个项目,然后尝试删除除最后一个之外的任何其他字符,则会删除整个字符串.只有这是我在ComboBox中做的第一件事时才会出现这两个问题.如果我先在组合框中写一些东西,或者我第二次选择一个项目,则不会出现所描述的任何问题.

对我来说真正奇怪的是,这些问题似乎是由谓词设置引起的(如果我注释掉setPredicate的调用,一切正常).这很奇怪,因为我认为这应该只影响为谓词设置的列表.它不应该影响ComboBox的其余部分.

  1. import javafx.application.Application;
  2. import javafx.beans.value.ChangeListener;
  3. import javafx.beans.value.ObservableValue;
  4. import javafx.collections.FXCollections;
  5. import javafx.collections.ObservableList;
  6. import javafx.collections.transformation.FilteredList;
  7. import javafx.scene.Scene;
  8. import javafx.scene.control.ComboBox;
  9. import javafx.scene.layout.VBox;
  10. import javafx.stage.Stage;
  11. import javafx.util.StringConverter;
  12. public class TestInputFilter extends Application {
  13. public void start(Stage stage) {
  14. VBox root = new VBox();
  15. ComboBoxBoxItem> cb = new ComboBoxBoxItem>();
  16. cb.setEditable(true);
  17. cb.setConverter(new StringConverterBoxItem>() {
  18. @Override
  19. // To convert the ComboBoxItem to a String we just call its
  20. // toString() method.
  21. public String toString(ComboBoxItem object) {
  22. return object == null ? null : object.toString();
  23. }
  24. @Override
  25. // To convert the String to a ComboBoxItem we loop through all of
  26. // the items in the comboBox dropdown and select anyone that starts
  27. // with the String. If we don't find a match we create our own
  28. // ComboBoxItem.
  29. public ComboBoxItem fromString(String string) {
  30. return cb.getItems().stream().filter(item -> item.getText().startsWith(string)).findFirst()
  31. .orElse(new ComboBoxItem(string));
  32. }
  33. });
  34. ObservableListBoxItem> options = FXCollections.observableArrayList(new ComboBoxItem("One is a number"),new ComboBoxItem("Two is a number"),new ComboBoxItem("Three is a number"),new ComboBoxItem("Four is a number"),new ComboBoxItem("Five is a number"),new ComboBoxItem("Six is a number"),new ComboBoxItem("Seven is a number"));
  35. FilteredListBoxItem> filteredOptions = new FilteredListBoxItem>(options,p -> true);
  36. cb.setItems(filteredOptions);
  37. InputFilter inputFilter = new InputFilter(cb,filteredOptions);
  38. cb.getEditor().textProperty().addListener(inputFilter);
  39. root.getChildren().add(cb);
  40. stage.setScene(new Scene(root));
  41. stage.show();
  42. }
  43. public static void main(String[] args) {
  44. launch();
  45. }
  46. class ComboBoxItem {
  47. private String text;
  48. public ComboBoxItem(String text) {
  49. this.text = text;
  50. }
  51. public String getText() {
  52. return text;
  53. }
  54. @Override
  55. public String toString() {
  56. return text;
  57. }
  58. }
  59. class InputFilter implements ChangeListenerBoxBoxItem> Box;
  60. private FilteredListBoxItem> items;
  61. public InputFilter(ComboBoxBoxItem> Box,FilteredListBoxItem> items) {
  62. this.Box = Box;
  63. this.items = items;
  64. }
  65. @Override
  66. public void changed(ObservableValueBox.getSelectionModel().getSelectedItem() != null
  67. ? Box.getSelectionModel().getSelectedItem().getText() : null;
  68. // If an item is selected and the value of in the editor is the same
  69. // as the selected item we don't filter the list.
  70. if (selected != null && value.equals(selected)) {
  71. items.setPredicate(item -> {
  72. return true;
  73. });
  74. } else {
  75. items.setPredicate(item -> {
  76. if (item.getText().toUpperCase().startsWith(value.toUpperCase())) {
  77. return true;
  78. } else {
  79. return false;
  80. }
  81. });
  82. }
  83. }
  84. }
  85. }

编辑:我试图在绝望的尝试中覆盖关键监听器来解决问题:

  1. cb.getEditor().addEventFilter(KeyEvent.KEY_PRESSED,e -> {
  2. TextField editor = cb.getEditor();
  3. int caretPos = cb.getEditor().getCaretPosition();
  4. StringBuilder text = new StringBuilder(cb.getEditor().getText());
  5. // If BACKSPACE is pressed we remove the character at the index
  6. // before the caret position.
  7. if (e.getCode().equals(KeyCode.BACK_SPACE)) {
  8. // BACKSPACE should only remove a character if the caret
  9. // position isn't zero.
  10. if (caretPos > 0) {
  11. text.deleteCharAt(--caretPos);
  12. }
  13. e.consume();
  14. }
  15. // If DELETE is pressed we remove the character at the caret
  16. // position.
  17. else if (e.getCode().equals(KeyCode.DELETE)) {
  18. // DELETE should only remove a character if the caret isn't
  19. // positioned after that last character in the text.
  20. if (caretPos < text.length()) {
  21. text.deleteCharAt(caretPos);
  22. }
  23. }
  24. // If LEFT key is pressed we move the caret one step to the left.
  25. else if (e.getCode().equals(KeyCode.LEFT)) {
  26. caretPos--;
  27. }
  28. // If RIGHT key is pressed we move the caret one step to the right.
  29. else if (e.getCode().equals(KeyCode.RIGHT)) {
  30. caretPos++;
  31. }
  32. // Otherwise we just add the key text to the text.
  33. // TODO We are currently not handling UP/DOWN keys (should move
  34. // caret to the end/beginning of the text).
  35. // TODO We are currently not handling keys that doesn't represent
  36. // any symbol,like ALT. Since they don't have a text,they will
  37. // just move the caret one step to the right. In this case,that
  38. // caret should just hold its current position.
  39. else {
  40. text.insert(caretPos++,e.getText());
  41. e.consume();
  42. }
  43. final int finalPos = caretPos;
  44. // We set the editor text to the new text and finally we move the
  45. // caret to its new position.
  46. editor.setText(text.toString());
  47. Platform.runLater(() -> editor.positionCaret(finalPos));
  48. });
  49. // We just consume KEY_RELEASED and KEY_TYPED since we don't want to
  50. // have duplicated input.
  51. cb.getEditor().addEventFilter(KeyEvent.KEY_RELEASED,e -> {
  52. e.consume();
  53. });
  54. cb.getEditor().addEventFilter(KeyEvent.KEY_TYPED,e -> {
  55. e.consume();
  56. });

可悲的是,这也没有解决问题.如果我选择“Three is a number”项,然后尝试删除“Three”中的最后一个“e”,这是text属性将在之间切换的值:

  1. TextProperty: Three is a number
  2. TextPropery: Thre is a number
  3. TextPropery:

所以它首先删除了正确的字符,但是由于某种原因它删除了整个字符串.如前所述,这只是因为谓词已经设置,而且只有在我第一次选择项目后进行第一次输入时才会发生这种情况.

最佳答案
了Jonatan,

正如Manuel所说,一个问题是setPredicate()会在你更改组合框模型时触发你的changed()方法两次,但真正的问题是组合框会用适合的任何值覆盖编辑器值.以下是您症状的解释:

If I select an item from the list,and then try to remove the last
character in the textfield,nothing happens.

在这种情况下,最后一个char的删除实际上正在发生,但是第一次调用setPredicate()会匹配一个可能的项目(与删除最后一个char的项目完全相同)并将组合框内容更改为仅一个项目.这会导致调用,其中组合框使用当前的comboBox.getValue()字符串恢复编辑器值,从而产生没有任何反应的错觉.它还会导致第二次调用您的changed()方法,但此时编辑器文本已经更改.

Why do this only happen the first time,but then never again?

好问题!这只发生一次,因为您正在修改组合框的整个基础模型一次(如前所述,触发对changed()方法的第二次调用).

因此,如果您单击下拉按钮(右箭头),则在上一个场景发生后,您将看到只剩下一个项目,如果您再次尝试删除一个字符,则仍会保留相同的项目,即模型(组合框的内容没有改变,因为setPredicate()仍将匹配相同的内容,因此不会在TextInputControl类中引起markInvalid()调用,因为内容实际上没有改变,这意味着不再恢复项目字符串(如果要查看文本字段实际还原的位置,请第一次使用JavaFX源查看ComboBoxPopupControl.updateDisplayNode()方法).

If I select an item from the list,and then try to remove any other
character than the last,the whole string gets removed.

在你的第二个场景中,没有任何东西与第一个setPredicate()调用匹配(没有匹配你的startsWith条件的项目),这会删​​除组合框中删除当前选择和编辑器字符串的所有项目.

提示:尝试并自己理解这一点,在切换()方法内切换断点,以查看输入的次数和原因(如果您想要遵循ComboBox及其组件行为,则需要JavaFX源)

解:
如果你想继续使用你的ChangeListener,你可以通过在过滤后恢复编辑器中的文本来简单地攻击你的主要问题(这是在setPredicate调用之后被替换的编辑器内容):

  1. class InputFilter implements ChangeListenerBoxBoxItem> Box;
  2. private FilteredListBoxItem> items;
  3. public InputFilter(ComboBoxBoxItem> Box,FilteredListBoxItem> items) {
  4. this.Box = Box;
  5. this.items = items;
  6. }
  7. @Override
  8. public void changed(ObservableValueBox.getSelectionModel().getSelectedItem() != null
  9. ? Box.getSelectionModel().getSelectedItem().getText() : null;
  10. // If an item is selected and the value of in the editor is the same
  11. // as the selected item we don't filter the list.
  12. if (selected != null && value.equals(selected)) {
  13. items.setPredicate(item -> {
  14. return true;
  15. });
  16. } else {
  17. // This will most likely change the Box editor contents
  18. items.setPredicate(item -> {
  19. if (item.getText().toUpperCase().startsWith(value.toUpperCase())) {
  20. return true;
  21. } else {
  22. return false;
  23. }
  24. });
  25. // Restore the original search text since it was changed
  26. Box.getEditor().setText(value);
  27. }
  28. //Box.show(); // <-- Uncomment this line for a neat look
  29. }
  30. }

我个人以前在使用KeyEvent处理程序之前已经完成了这个(为了避免在changed()事件中多次调用我的代码),但是你总是可以使用semaphore或java.util.concurrent类中你喜欢的类来避免如果你觉得你开始需要它,任何不必要的重新进入你的方法.现在,getEditor().setText()将始终尾部恢复正确的值,即使相同的方法向下冒泡两到三次.

希望这可以帮助!

猜你在找的Java相关文章