gpt4 book ai didi

java - 我可以在构建 CellValueFactory 时检查 TableCell 的内容是否会溢出吗

转载 作者:行者123 更新时间:2023-11-30 05:57:52 31 4
gpt4 key购买 nike

我有一个 JavaFX 表列,我想显示以逗号分隔的字符串列表,除非文本不适合单元格的当前边界,此时它将显示,例如“Foo 和其他 3 个...”,或“3 Bars”,即反射(reflect)列表中元素的数量

在为表列构建 CellValueFactory 时,有没有办法检查文本是否会超出单元格,以便我可以在这两种行为之间切换?

最佳答案

您可以为 Labeled 控件(例如 TableCell)指定溢出样式。

溢出样式 ELLIPSIS 将根据需要自动添加这些省略号,以指示内容是否会扩展到标签之外。

我建议在细胞工厂中执行此操作,如下所示:

column.setCellFactory(() -> {
TableCell<?, ?> cell = new TableCell<>();
cell.setTextOverrun(OverrunStyle.ELLIPSIS);
return cell;
});

因此,您需要使用单元格工厂而不是单元格值工厂。我推荐单元工厂的原因是因为表根据需要自行创建和销毁单元,因此如果您无法像您一样控制这些单元的创建,那么您将很难获取所有这些实例并设置它们的溢出行为与细胞工厂一起做。

<小时/>

新尝试

尝试沿着这些思路进行操作,您可能需要调整方法来获取字符串的长度,并且您可能希望在更新表格单元格时尝试计算出表格单元格的当前长度,但这应该可以帮助您开始了。认为这是一个不错的方法吗?

public class TestApplication extends Application {

public static void main(String[] args) {
Application.launch(args);
}


public void start(final Stage stage) {
stage.setResizable(true);

TestTableView table = new TestTableView();
ObservableList<String> items = table.getItems();
items.add("this,is,short,list");
items.add("this,is,long,list,it,just,keeps,going,on,and,on,and,on");

Scene scene = new Scene(table, 400, 200);
stage.setScene(scene);

stage.show();
}


/**
* Note: this does not take into account font or any styles.
* <p>
* You might want to modify this to put the text in a label, apply fonts and css, layout the label,
* then get the width.
*/
private static double calculatePixelWidthOfString(String str) {
return new Text(str).getBoundsInLocal().getWidth();
}

public class TestTableView extends TableView<String> {

public TestTableView() {
final TableColumn<String, CsvString> column = new TableColumn<>("COL1");
column.setCellValueFactory(cdf -> {
return new ReadOnlyObjectWrapper<>(new CsvString(cdf.getValue()));
});
column.setCellFactory(col -> {
return new TableCell<String, CsvString>() {

@Override
protected void updateItem(CsvString item, boolean empty) {
super.updateItem(item, empty);

if (item == null || empty) {
setText(null);
} else {

String text = item.getText();
// get the width, might need to tweak this.
double textWidth = calculatePixelWidthOfString(text);
// might want to compare against current cell width
if (textWidth > 100) {
// modify the text here
text = item.getNumElements() + " elements";
}

setText(text);
}
}
};
});
this.getColumns().add(column);
}
}

private static class CsvString {

private final String text;
private final String[] elements;


public CsvString(String string) {
Objects.requireNonNull(string);
this.text = string;
this.elements = string.split(" *, *");
}


public int getNumElements() {
return elements.length;
}


public String getText() {
return text;
}
}
}

关于java - 我可以在构建 CellValueFactory 时检查 TableCell 的内容是否会溢出吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52858049/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com