如何完全禁用 JTextPane 的文本突出显示?

How can I disable text highlighting for a JTextPane completely?

拜托,谁能告诉我如何禁用 JTextPane 的文本突出显示。 我的 JTextPane 是半透明的,因此是突出显示的错误。但是没有突出显示是好的!

我试过以下方法:

DefaultHighlighter highlighter =  (DefaultHighlighter) chatTextPane.getHighlighter();
highlighter.removeAllHighlights();

chatTextPane.setHighlighter(null);

chatTextPane.setSelectedTextColor(new Color(0,0,0,0));
chatTextPane.setSelectionColor(new Color(0,0,0,0));

chatTextPane.setSelectionStart(0);
chatTextPane.setSelectionEnd(0);

chatTextPane.setCaret(new NoTextSelectionCaret(chatTextPane));
// with:
private class NoTextSelectionCaret extends DefaultCaret
{
    public NoTextSelectionCaret(JTextComponent textComponent)
    {
        setBlinkRate( textComponent.getCaret().getBlinkRate() );
        textComponent.setHighlighter( null );
    }

    @Override
    public int getMark()
    {
        return getDot();
    }
}

还有一些 highlighter.getDrawsLayeredHighlights(); 我什至不记得了。

谢谢!

由于 Swing 的工作方式,突出显示显示了一些不需要的伪像,并且我将我的 JTextPane 包裹在另一个具有透明颜色的面板中。

消除伪影,将 JTextPane 包装在 AlphaContainer

public class AlphaContainer extends JComponent
{
    private JComponent component;

    public AlphaContainer(JComponent component)
    {
        this.component = component;
        setLayout( new BorderLayout() );
        setOpaque( false );
        component.setOpaque( false );
        add( component );
    }

    /**
     *  Paint the background using the background Color of the
     *  contained component
     */
    @Override
    public void paintComponent(Graphics g)
    {
        g.setColor( component.getBackground() );
        g.fillRect(0, 0, getWidth(), getHeight());
    }
}

然后:

AlphaContainer ac = new AlphaContainer(chatTextPane);

并将 AlphaContainer 添加到您的框架中。如果要将AlphaContainer包含在另一个组件中,则将另一个组件设置为setOpaque(false);

然后您可以根据需要设置 chatTextPane.setHighlighter(null); 以禁用突出显示。

有关详细信息,请参阅 Backgrounds With Transparency provided by camickr