当应用程序全屏显示时,我一直遇到ListView控件出现问题的问题。我很少能够连续选择2个项目而不会像我没有点击那样。然而,当不在全屏模式下时,这一切都很好。这发生在我的几个不同的程序中,几乎是使用JavaFx的交易破坏者。 我注意到JRE 1.8.0_40和1.8.0._60中的相同行为。我使用的是Windows 7 64位。我不确定这是否是一个错误,或者我做错了什么。
这里有一些代码可以复制错误:
package application;
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.ListView;
import javafx.scene.layout.AnchorPane;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
try {
AnchorPane root = new AnchorPane();
Scene scene = new Scene(root);
ListView<String> view = new ListView<>();
view.setPrefHeight(300);
view.setPrefWidth(100);
root.getChildren().add(view);
view.getItems().addAll("Item 1", "Item 2", "Item 3", "Item 4", "Item 5");
primaryStage.setFullScreenExitHint("");
primaryStage.setFullScreen(true);
primaryStage.setScene(scene);
primaryStage.show();
} catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
launch(args);
}
}