我已经尝试了几个小时,似乎无法在任何地方找到答案。我有2个与同一列表视图相关的问题,1个比另一个更严重。
我正在尝试匹配java中提供给我的设计。列表视图应如下所示
目前我已经到了
我创建了一个自定义ListCell来保存所有视图(尚未重构,因此可能看起来有些不整洁)
import HolderClasses.MenuItem;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.VBox;
public class CustomListCell extends ListCell<MenuItem>{
private Image mImage;
private String mText;
private AnchorPane background;
private ImageView imageHolder;
private VBox colourStrip;
private Label mTextLabel;
public CustomListCell(){
background = new AnchorPane();
imageHolder = new ImageView();
mTextLabel = new Label();
imageHolder.setFitHeight(40.0);
imageHolder.setFitWidth(40.0);
imageHolder.getStyleClass().add("listCellImage");
mTextLabel.getStyleClass().add("listCellText");
AnchorPane.setLeftAnchor(imageHolder, 10.0);
AnchorPane.setTopAnchor(imageHolder, 10.0);
AnchorPane.setBottomAnchor(imageHolder, 10.0);
AnchorPane.setLeftAnchor(mTextLabel, 80.0);
AnchorPane.setRightAnchor(mTextLabel, 1.0);
AnchorPane.setTopAnchor(mTextLabel, 0.0);
AnchorPane.setBottomAnchor(mTextLabel, 0.0);
colourStrip = new VBox();
colourStrip.setMinWidth(0.0);
colourStrip.setMaxWidth(2.0);
colourStrip.setPrefWidth(2.0);
colourStrip.getStyleClass().add("listCellColourStrip");
AnchorPane.setRightAnchor(colourStrip, 0.0);
AnchorPane.setTopAnchor(colourStrip, 0.0);
AnchorPane.setBottomAnchor(colourStrip, 0.0);
background.getChildren().addAll(mTextLabel, imageHolder, colourStrip);
}
@Override
protected void updateItem(MenuItem item, boolean empty) {
super.updateItem(item, empty);
if (empty || item == null) {
//remove all the views
setText(null);
setGraphic(null);
} else {
//set all the views
imageHolder.setImage(item.getImage());
mTextLabel.setText(item.getText());
setText(null);
setGraphic(background);
}
}
}
我的CSS是
.list-cell {
-fx-background-color: #FCFCFC;
-fx-background-insets: 0 0 1 0;
}
.list-cell:empty {
-fx-background-color: #FCFCFC;
-fx-background-insets: 0 ;
}
.list-cell:selected .listCellColourStrip{
-fx-background-color: #CF000F;
}
.list-cell:selected {
-fx-background-color: #FFFFFF;
}
.list-view .scroll-bar:vertical .increment-arrow,
.list-view .scroll-bar:vertical .decrement-arrow,
.list-view .scroll-bar:vertical .increment-button,
.list-view .scroll-bar:vertical .decrement-button {
-fx-padding: 0px;
}
.list-view .scroll-bar:vertical {
-fx-padding: 0px;
}
.listCellImage {
-fx-opacity: 0.4;
}
.listCellText{
-fx-font-size: 1.5em;
-fx-text-fill: #888;
-fx-font-family: "Museo Sans 500";
}
简而言之,我已设法移除滚动条,但滚动条占用的空间似乎仍然在它消失后被占用,我不能为我的生活得到红色条显示在最后细胞。
原始设计灵感来自Android列表视图,其中滚动条放置在内容的顶部,拇指在滚动时是半透明的,而在不滚动时是不可见的。理想情况下我也希望实现这一点,但如果红线可以放在最后,没有滚动条是可接受的折衷方案。
我已经探索过使用ScrollPane和标准的AnchorPane而不是ListView无济于事,并决定再次使用ListView。但我愿意接受任何达到预期效果的解决方案,即使这意味着再次撕掉ListView。
您可以给予任何帮助。
抱歉,如果我的问题格式不正确,我是新手:)
由于
答案 0 :(得分:5)
更改
.list-view .scroll-bar:vertical {
-fx-padding: 0px;
}
到
.list-view .scroll-bar:vertical {
-fx-scale-x: 0;
}
如果你想在项目之间禁用移动:
listview.setMouseTransparent( true );
listview.setFocusTraversable( false );