どういうわけか、JTree ノードの「選択ハイライト」を有効にできません。プロジェクトでカスタム セル レンダラーを使用しています (この問題が発生する可能性が最も高い)。
これは完全なレンダラー クラス コードです。
protected class ProfessionTreeCellRenderer extends DefaultTreeCellRenderer {
private final JLabel label;
public ProfessionTreeCellRenderer() {
label = new JLabel();
setBackgroundSelectionColor(Color.BLUE);
setOpaque(true);
}
@Override
public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) {
Object o = ((DefaultMutableTreeNode) value).getUserObject();
if (o instanceof Profession) {
Profession profession = (Profession) o;
label.setIcon(profession.getIcon());
label.setText(profession.getDisplayName());
} else if(o instanceof NPC) {
label.setIcon(QuestEdit.getIcon("npc"));
label.setText(((NPC) o).getName());
} else {
label.setIcon(null);
label.setText("" + value);
}
return label;
}
}
stackoverflow や他のサイトで考えられる解決策を検索したところ、「setOpaque」メソッドが見つかりました - まったく変更はありません。
ハイライトは私の別のプロジェクトで完全に機能しているので、カスタムレンダラーで何かをしなければならないと確信しています。
編集:
JLabel を削除してそれらの行を追加すると、うまくいきました。
this.selected = selected;
this.hasFocus = hasFocus;
if (selected) {
super.setBackground(getBackgroundSelectionColor());
setForeground(getTextSelectionColor());
} else {
super.setBackground(getBackgroundNonSelectionColor());
setForeground(getTextNonSelectionColor());
}