JavaFX TextField Array文本值的最大长度 [英] JavaFX TextField Array max length of text value

查看:179
本文介绍了JavaFX TextField Array文本值的最大长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究JavaFX项目,使用TextField控件时遇到问题。我想将用户将输入到每个TextField的字符限制为一个。如果您使用带有Listener的单个文本字段,我找到了一个解决方案:

I am working on a JavaFX project and I have a problem using the TextField control. I want to limit the characters that users will enter to each TextField to one. I found a solution if you use a single textfield with a Listener:

public static void addTextLimiter(final TextField tf, final int maxLength) {
tf.textProperty().addListener(new ChangeListener<String>() {
    @Override
    public void changed(final ObservableValue<? extends String> ov, final String oldValue, final String newValue) {
        if (tf.getText().length() > maxLength) {
            String s = tf.getText().substring(0, maxLength);
            tf.setText(s);
        }
    }
});

但问题是我有一个TextFields数组。你们可能知道如何为TextFieldArray重写这个监听器吗?

But the problem is that I have an Array of TextFields. Do you guys maybe know how I can rewrite this listener for a TextFieldArray?

数组列表实现:

static public TextField[] tfLetters = new TextField[37];

数组的初始化:

private void layoutNodes() {
    int letternummer = 0;
    for (int i = 1; i < 8; i++) {
        for (int j = 0; j < i + 1; j++) {
            this.tfLetters[letternummer] = new TextField("Letter " + i);
            this.add(tfLetters[letternummer], j, i);
            tfLetters[letternummer].setPadding(new Insets(5, 30, 5, 5));
            tfLetters[letternummer].setAlignment(Pos.CENTER);
            tfLetters[letternummer].setMinSize(10, 10);
            letternummer++;
        }

    }

我使用了给定的解决方案:

I used the given solution:

Arrays.asList(tfLetters).forEach(tfLetters -> GamePresenter.addTextLimiter(tfLetters,1));

GamePresenter是用于编写监听器的视图的演示者。
在视图GameView中,我实现了文本字段数组。但是现在当我运行给定的解决方案时,我会发出以下NullPointerException:

GamePresenter is the presenter of the view where the Listener is written. In the view "GameView" I have implemented the Array of textfields. But now when I run the given solution I go the following NullPointerException:

Exception in thread "JavaFX Application Thread" java.lang.NullPointerException
at be.kdg.letterpyramide.view.GameView.GamePresenter.addTextLimiter(GamePresenter.java:36)
at be.kdg.letterpyramide.view.GameView.GameView.lambda$layoutNodes$0(GameView.java:52)
at java.util.Arrays$ArrayList.forEach(Arrays.java:3880)

GameView行:36

GameView line: 36

 tf.textProperty().addListener(new ChangeListener<String>() {

GameView行:52

GameView line: 52

Arrays.asList(tfLetters).forEach(tfLetters -> GamePresenter.addTextLimiter(tfLetters,1));

旁注:我把它设为公共静态,所以我可以在我的GamePresenter中使用它。我是Java的新手。

Sidenote: I made it public static so I can use it in my GamePresenter. I'm very new to Java.

提前致谢!

推荐答案

这是一个没有的解决方案GridPane,但这是将Fields添加到GridPane的简单过程。现在使用更好的TextFormatter。

This is a solution without a GridPane, but this is an easy process of adding the Fields also to a GridPane. And now with a TextFormatter that is much better.

import java.util.ArrayList;
import java.util.List;
import java.util.function.UnaryOperator;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.control.TextFormatter;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class ChangeListenerDemo extends Application {

  @Override
  public void start(Stage primaryStage) {
    List<TextField> fields = createLimitedTextFields(9, 1);

    VBox box = new VBox();
    box.getChildren().addAll(fields);

    Scene scene = new Scene(box, 300, 250);
    primaryStage.setScene(scene);
    primaryStage.show();
  }

  private List<TextField> createLimitedTextFields(int num, int maxLength) {
    final List<TextField> fields = new ArrayList<>();

    final UnaryOperator<TextFormatter.Change> filter
            = (TextFormatter.Change change) -> {
       if (change.getControlNewText().length() > maxLength) {
             return null;
       }
       return change;
    };
    for (int i = 0; i < num; i++) {
      final TextField tf = new TextField();
      tf.setTextFormatter(new TextFormatter(filter));
      fields.add(tf);
    }
    return fields;
  }

  /**
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    launch(args);
  }
}

这篇关于JavaFX TextField Array文本值的最大长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆