是否可以在JTree中的节点行之间添加一些空格?我使用自定义图像作为节点图标,我猜图像比标准节点图标大,所以节点图标非常靠近。如果有一点分离,它看起来会更好。
答案 0 :(得分:3)
要在树节点之间添加实际间距,您必须修改UI并返回正确的AbstractLayoutCache后继(默认情况下,JTree使用两个类,具体取决于行高值:FixedHeightLayoutCache或VariableHeightLayoutCache)
在节点之间添加一些间距的最简单方法是修改渲染器,因此它会有一些额外的边框,例如:
public static void main ( String[] args )
{
JFrame frame = new JFrame ();
JTree tree = new JTree ();
tree.setCellRenderer ( new DefaultTreeCellRenderer ()
{
private Border border = BorderFactory.createEmptyBorder ( 4, 4, 4, 4 );
public Component getTreeCellRendererComponent ( JTree tree, Object value, boolean sel,
boolean expanded, boolean leaf, int row,
boolean hasFocus )
{
JLabel label = ( JLabel ) super
.getTreeCellRendererComponent ( tree, value, sel, expanded, leaf, row,
hasFocus );
label.setBorder ( border );
return label;
}
} );
frame.add ( tree );
frame.pack ();
frame.setLocationRelativeTo ( null );
frame.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
frame.setVisible ( true );
}
这仍然比设置静态行高(在评论中为您提供的Subs)更难,但由于各种操作系统上不同的字体大小和样式,它更好。所以你不会在任何地方遇到尺寸问题。
顺便说一句,您也可以按自己喜欢的方式更改节点选择表示,这样您甚至可以直观地伪造间距。