我开发了一个简单的 javafx 应用程序以移植到 Android 环境中,但是我无法在 TextField 中键入任何字符。我想这是一个错误,如何解决这个问题?
Galaxy S5 android 5.0.1 上的问题不存在,但在 Galaxy Tab 4 android 5.0.2 上它不起作用,我输入但没有显示。尝试使用普通文本字段。而且问题仍然存在,我已经添加了属性。另一个奇怪的地方是识别器所在的空间。还有 del 按钮。文字不
示例代码非常简单
Rectangle2D visualBounds = Screen.getPrimary().getVisualBounds();
double width = visualBounds.getWidth();
double height = visualBounds.getHeight();
TextField tt= new TextField();
tt.setTranslateY(-150);
StackPane stackPane = new StackPane();
stackPane.getChildren().addAll(tt);
borderpane.setCenter(stackPane);
Scene scene = new Scene(borderpane, width, height);
stage.setScene(scene);