JavaFX:如何使用自定义样式表将文本颜色应用于TableCell?
当我直接在我的CellFactory中使用setTextFill()
时,它工作正常,但我想使用外部CSS文件应用自定义样式。我可以证明我的CSS类已应用,因为字体变为粗体。但是,不应用CSS文件的字体颜色。
@Override
protected void updateItem(MyObject item, boolean empty) {
super.updateItem(item, empty);
if (null != item) {
// EITHER:
this.getStyleClass().add("styleImportant"); // Does NOT set color.
// OR:
this.setTextFill(Color.RED); // Does set color.
}
else {
this.getStyleClass().remove("styleImportant");
}
}
样式表:
.styleImportant {
-fx-font-weight: bold; /** Does work. */
-fx-text-fill: red; /** Does NOT work. */
}
它与CSS选择器的特异性有某种关系,但我没有设法找到任何有效的设置。
编辑我设法使用CSS同时应用自定义文字颜色和背景颜色。我的实现现在使用包含在Label
中的VBox
来使背景颜色填充整个表格单元格。但是,在删除自定义样式时,我仍然遇到一些背景颜色无法清除的问题。
有没有比应用清晰风格更好的解决方案?
colExample.setCellFactory(new Callback<TableColumn<Example, Example>, TableCell<Example, Example>>() {
@Override
public TableCell<Example, Example> call(TableColumn<Example, Example> tableColumn) {
return new TableCell<Example, Example>() {
private VBox container;
private Label text;
// Anonymous constructor
{
this.container = new VBox();
this.text = this.createLabel();
this.container.getChildren().add(this.text);
this.setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
this.setStyle("-fx-padding: -1 -1 -1 -1;"); // Remove padding from cell
this.setGraphic(this.container);
}
private final Label createLabel() {
Label label = new Label();
VBox.setVgrow(label, Priority.ALWAYS);
label.setMaxWidth(Double.MAX_VALUE);
label.setMaxHeight(Double.MAX_VALUE);
label.setAlignment(Pos.CENTER);
return label;
}
@Override
protected void updateItem(Example example, boolean empty) {
super.updateItem(example, empty);
// Reset column styles
if (null != this.text && null != this.text.getStyleClass()) {
String[] possibleStyles = new String[] { "styleImportant", "clearStyle" };
for (String style: possibleStyles) {
if (this.text.getStyleClass().contains(style)) {
// Will not reset background, even though style is removed?
this.text.getStyleClass().remove(style);
}
}
// Apply reset style to clear background color
this.text.getStyleClass().add("clearStyle");
}
if (null != example) {
this.text.setText(example.getContent());
if (example.isImportant()) {
this.text.getStyleClass().add("styleImportant");
}
}
}
};
}
});
我的样式表:
/** Keep black text color, when user selects row */
.table-row-cell:focused {
-fx-dark-text-color: #000000;
-fx-mid-text-color: #000000;
-fx-light-text-color: #000000;
}
/** Style to reset background color */
.clearStyle {
-fx-background-color: transparent;
}
/** Style for important cells */
.styleImportant {
/** Red text color on any background */
-fx-dark-text-color: #FF0000;
-fx-mid-text-color: #FF0000;
-fx-light-text-color: #FF0000;
-fx-background-color: #FF9999;
}
答案 0 :(得分:5)
正如José在他的回答中指出的那样,如果你在你的单元格中设置图形,你(可能)需要将css样式类应用于图形(取决于图形是什么)。如果您只是致电setText(...)
,那么您的代码应该有效。
设置为图片的Label
未从表格单元格继承-fx-text-fill
的原因是Label
也设置了-fx-text-fill
。在默认样式表中,TableCell
和Label
都设置如下:
-fx-text-fill: -fx-text-background-color ;
fx-text-background-color
是looked-up color,定义为梯形图,如下所示:
-fx-text-background-color: ladder(
-fx-background,
-fx-light-text-color 45%,
-fx-dark-text-color 46%,
-fx-dark-text-color 59%,
-fx-mid-text-color 60%
);
这个(相当复杂的)设置意味着-fx-text-background-color
的值取决于-fx-background
的值。如果-fx-background
小于最大强度的45%(即它是暗的),则-fx-text-background-color
的值将设置为-fx-light-text-color
。如果-fx-background
的强度介于46%和59%之间,则该值等于-fx-drak-text-color
。如果是60%或更多,则设置为-fx-mid-text-color
。这里的想法是文本颜色将自动调整为背景以保持可见。 -fx-dark-text-color
,-fx-mid-text-color
和-fx-light-text-color
的值分别设置为黑色,深灰色(#333)和白色。
由于Label
未覆盖-fx-text-background-color
的值,您只需更改表格单元格的值即可实现所需:
.styleImportant {
-fx-text-background-color: red ;
}
现在这会覆盖表格单元格的查找颜色值,并且由于单元格内的图形不会覆盖该值本身,因此它会从单元格继承它。
更复杂的方法是重新定义-fx-[light|mid|dark]-text-color
。这样做的好处是,如果更改背景,颜色将适当调整:特别是如果选择了单元格,您可以确保文本保持可见:
.styleImportant {
-fx-light-text-color: white ;
-fx-mid-text-color: #c00 ;
-fx-dark-text-color: red ;
}
答案 1 :(得分:2)
由于我不知道单元格中的对象类型,我会使用Label
。
这就是你在做的事情:
@Override
public void start(Stage primaryStage) {
TableView<Label> table = new TableView<>();
TableColumn<Label,String> column = new TableColumn<>();
column.setCellValueFactory(param -> param.getValue().textProperty());
column.setCellFactory((TableColumn<Label, String> param) -> {
TableCell<Label, String> cell = new TableCell<Label, String>(){
@Override
protected void updateItem(String item, boolean empty){
super.updateItem(item, empty);
if(!empty){
this.getStyleClass().add("styleImportant");
Label label = new Label(item);
setGraphic(label);
}
}
};
return cell;
});
table.getColumns().add(column);
...
}
这会给你粗体文字,但是黑色。
如果您想要一个带有红色文本的对象(在我的例子中,Label
),请将样式表应用于该对象:
@Override
protected void updateItem(String item, boolean empty){
super.updateItem(item, empty);
if(!empty){
Label label = new Label(item);
label.getStyleClass().add("styleImportant");
setGraphic(label);
}
}
修改强>
这是示例的完整代码:
@Override
public void start(Stage primaryStage) {
TableView<Label> table = new TableView<>();
ObservableList<Label> data = FXCollections.observableArrayList(
new Label("Some Text"), new Label("Some More Text"));
TableColumn<Label,String> column = new TableColumn<>("Column");
column.setCellValueFactory(param -> param.getValue().textProperty());
column.setCellFactory((TableColumn<Label, String> param) -> {
TableCell<Label, String> cell = new TableCell<Label, String>(){
@Override
protected void updateItem(String value, boolean empty){
super.updateItem(value, empty);
if(!empty){
Label label = new Label(value);
label.getStyleClass().add("styleImportant");
setGraphic(label);
} else {
setGraphic(null);
}
}
};
return cell;
});
column.setPrefWidth(100);
table.getColumns().add(column);
table.setItems(data);
Scene scene = new Scene(table, 300, 250);
scene.getStylesheets().add(getClass().getResource("table.css").toExternalForm());
primaryStage.setScene(scene);
primaryStage.show();
}
在table.css中的位置:
.styleImportant {
-fx-font-weight: bold;
-fx-text-fill: red;
}
运行此简短示例应如下所示: