下面是我要动态附加包含名称,作者,描述和按钮的窗格的主UI。
在这里,它很好地扩展到可用宽度。
这是我用于上述UI的FXML代码
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: white;" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ResultsUI">
<children>
<AnchorPane prefWidth="600.0" style="-fx-background-color: white;" VBox.vgrow="NEVER">
<children>
<TextField id="queryOldTF" fx:id="queryOldTF" layoutX="14.0" layoutY="14.0" prefHeight="40.0" prefWidth="518.0" style="-fx-min-height: 40; -fx-border-radius: 50%; -fx-border-color: #007BFF; -fx-background-color: white;" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="68.0" AnchorPane.topAnchor="14.0" />
<Button id="serachAgainBtn" fx:id="serachAgainBtn" layoutX="532.0" layoutY="14.0" mnemonicParsing="false" onAction="#searchAgain" style="-fx-background-color: #007BFF; -fx-min-height: 40; -fx-min-width: 40; -fx-text-fill: white; -fx-border-radius: 50%; -fx-background-radius: 50%;" text="GO" AnchorPane.rightAnchor="14.0" AnchorPane.topAnchor="14.0" />
</children>
<VBox.margin>
<Insets />
</VBox.margin>
</AnchorPane>
<AnchorPane prefHeight="700.0" prefWidth="600.0" style="-fx-background-color: white;" VBox.vgrow="ALWAYS">
<children>
<ScrollPane id="scrollPane" fx:id="scrollPane" fitToWidth="true" layoutX="1.0" prefHeight="339.0" prefWidth="574.0" style="-fx-background-color: white;" vbarPolicy="ALWAYS" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="1.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="0.0">
<content>
<AnchorPane prefHeight="206.0" style="-fx-background-color: white;">
<children>
<TextArea id="descTl" fx:id="descTl" editable="false" layoutY="46.0" prefHeight="111.0" prefRowCount="4" style="-fx-background-color: white;" wrapText="true" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0">
<font>
<Font name="Calibri Light" size="12.0" />
</font>
</TextArea>
<Label id="nameTl" fx:id="nameTl" prefHeight="27.0" style="-fx-font-size: 18;" text="Name" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="1.0" />
<Label id="authorTl" fx:id="authorTl" layoutX="4.0" layoutY="27.0" prefHeight="17.0" style="-fx-font-style: italic;" text="Authors" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" />
<Button id="openBtn" fx:id="openBtn" layoutY="164.0" mnemonicParsing="false" style="-fx-background-color: white; -fx-border-color: #007BFF; -fx-border-radius: 25%;" text="Open" AnchorPane.bottomAnchor="14.800000000000011" AnchorPane.leftAnchor="0.0" />
</children>
</AnchorPane>
</content>
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</ScrollPane>
</children>
</AnchorPane>
</children>
</VBox>
这是我的FXML子部分,我在运行时对其进行动态充气和添加
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.Pane?>
<fx:root xmlns:fx="http://javafx.com/fxml" type="javafx.scene.layout.Pane">
<Pane id="resPane" fx:id="resPane" prefHeight="200.0" prefWidth="200.0">
<children>
<Label id="descTl" fx:id="descTl" layoutX="14.0" layoutY="75.0" text="Description" />
<Label id="nameTl" fx:id="nameTl" layoutX="14.0" layoutY="14.0" style="-fx-font-size: 18;" text="Name" />
<Label id="authorTl" fx:id="authorTl" layoutX="14.0" layoutY="49.0" text="Authors" />
<Button id="openBtn" fx:id="openBtn" layoutX="12.0" layoutY="161.0" mnemonicParsing="false" text="Open" />
</children>
</Pane>
</fx:root>
这是我想要实现的:
1)使动态膨胀的窗格动态填充宽度
2)从textarea中删除滚动条(即使设置了首选的row属性后实际上也不会删除),并在文本溢出时添加椭圆形
3)从用户界面中删除灰色背景(尽管将所有视图的属性设置为白色背景,我似乎也找不到用户界面的哪个部分在用户界面中引起灰色斑点)
下面是我的主控制器
public class ResultsUI { @FXML
private ResourceBundle resources;
@FXML
private URL location;
@FXML
private TextField queryOldTF;
@FXML
private Button serachAgainBtn;
@FXML
private VBox resContainer;
@FXML
private ScrollPane scrollPane;
@FXML
void searchAgain(ActionEvent event) {
String query = queryOldTF.getText().toString();
queryOldTF.setText(query);
getFromOwn = true;
initialize();
}
private boolean getFromOwn = false;
@FXML
void initialize() {
assert queryOldTF != null : "fx:id=\"queryOldTF\" was not injected: check your FXML file 'Second.fxml'.";
assert serachAgainBtn != null : "fx:id=\"serachAgainBtn\" was not injected: check your FXML file 'Second.fxml'.";
assert resContainer != null : "fx:id=\"resContainer\" was not injected: check your FXML file 'Second.fxml'.";
assert scrollPane != null : "fx:id=\"scrollPane\" was not injected: check your FXML file 'Second.fxml'.";
System.out.println(MainUI.query);
if (!getFromOwn)
queryOldTF.setText(MainUI.query);
HashMap<Integer, Double> documents = ExtendedBooleanModel.returnRankedDocuments(queryOldTF.getText().toString().trim());
Map<Integer, Paper> papers = ObjectHandler.getPapersCollection();
List<MyPane> panes = new ArrayList<>();
for (int index:
documents.keySet()) {
MyPane docPane = new MyPane(papers.get(index).getContent(), papers.get(index).getTitle(), papers.get(index).getAuthor(), papers.get(index).getName());
panes.add(docPane);
}
VBox pane = new VBox();
pane.getChildren().addAll(panes);
scrollPane.setContent(pane);
}
}
下面是用于动态扩展窗格的控制器:
public class MyPane extends Pane {
@FXML
public TextArea descTl;
@FXML
public Label nameTl;
@FXML
public Label authorTl;
public MyPane(String desc, String name, String author, String doc) {
FXMLLoader loader = new FXMLLoader(getClass().getResource("subFXML.fxml"));
loader.setRoot(this);
loader.setController(this);
try {
loader.load();
descTl.setText(desc);
nameTl.setText(name);
authorTl.setText(author);
openBtn.setOnAction(event -> {
File myFile = new File("pdfs/" + doc.replace(".txt", ".pdf"));
try {
Desktop.getDesktop().open(myFile);
} catch (IOException e) {
e.printStackTrace();
}
});
} catch (IOException exception) {
throw new RuntimeException(exception);
}
}
@FXML
private Button openBtn;
public void setOnAction(EventHandler<ActionEvent> handler) {
System.out.println("test");
openBtn.setOnAction(handler);
}
public EventHandler<ActionEvent> getOnAction() {
return openBtn.getOnAction();
}
}
任何帮助都会得到极大的帮助...
答案 0 :(得分:2)
正如我在上一个问题中提到in a comment时,强烈建议您不要使用AnchorPane
。使用实际上会 layout (“自动”)其子级的布局,将会有更好的时间。例如,您的主FXML文件可以简化为:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="ResultsUI" prefWidth="600" prefHeight="500">
<HBox spacing="10">
<padding>
<Insets topRightBottomLeft="10"/>
</padding>
<TextField fx:id="queryOldTF" HBox.hgrow="ALWAYS"/>
<Button fx:id="searchAgainBtn" text="GO" onAction="#searchAgain"/>
</HBox>
<ListView fx:id="resultsListView" VBox.vgrow="ALWAYS"/>
</VBox>
使用此设置,您不必担心绝对定位(例如layoutX
,ArchivePane.rightAnchor
等)。这也将ListView
用作suggested by Sedrick;由于ListView
是一个虚拟控件,即使有很多结果要显示,它也可以保持性能。
在控制器中,您已自定义cellFactory
中的ListView
以正确显示您的项目(请参见this question)。您还可以将“子部分” FXML文件(可能用作单元格图形的文件)简化为:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.layout.VBox?>
<fx:root xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"
type="javafx.scene.layout.VBox">
<Label fx:id="titleLabel" text="Title"/>
<Label fx:id="authorsLabel" text="Authors"/>
<!-- The parent VBox will grow the TextArea horizontally -->
<TextArea fx:id="descArea" editable="false" wrapText="true" prefRowCount="6"/>
<Button text="Open" onAction="#openFile"/>
</fx:root>
为简洁起见,在上述两个FXML文件中,我都省略了style
,但将样式分成一个或多个CSS文件可能更容易/更清洁/更易于维护。
关于移除TextArea
中的滚动条,请参见this question。
您看到的灰色框可能是ScrollPane
的背景,尽管它可能是其他祖先节点甚至是Scene
。由于您的节点没有不增长以填充所需的空间,因此祖先节点的背景正在“窥视”。可以通过固定布局来修复其中的一些问题,以便覆盖节点。但是,您可能需要设置某些节点的背景色。使用CSS最简单。参见JavaFX CSS Reference Guide。
在这里使用Scene Builder的CSS分析器可能是有用的工具。要显示它,请转到View > Show CSS Analyzer
或按 Ctrl + 6 (Windows)。