簡體   English   中英

Swing文本字段中的延遲文本顏色更改

[英]Delayed text color change in Swing text field

是否可以更改文本字段中文本的顏色?我正在嘗試構建一個解釋器,所以我想知道如何實時更改文本的顏色。 例如,我在文本字段中輸入的單詞是:

printf("hi");

幾秒后, printf一詞變為綠色。

可能嗎?

BlinkColorTextField

package test;

import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.Timer;

public class BlinkColorTextField {

    BlinkColorTextField() {
        final JTextField blinkingText = new JTextField("Red & Blue");
        ActionListener blinker = new ActionListener() {
            boolean isRed = true;
            public void actionPerformed(ActionEvent ae) {
                if (isRed) {
                    blinkingText.setForeground(Color.BLUE);
                } else {
                    blinkingText.setForeground(Color.RED);
                }
                isRed = !isRed;
            }
        };
        Timer timer = new Timer(1000, blinker);
        timer.start();
        JOptionPane.showMessageDialog(null, blinkingText);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable(){
            public void run() {
                new BlinkColorTextField();
            }
        });
    }

}

嘗試這個:

HighlightPainter greenPainter = new DefaultHighlighter.DefaultHighlightPainter(Color.GREEN);

//in a thread...    
Highlighter h = tf.getHighlighter();
h.addHighlight(offset, offset+length, greenPainter); 

您必須使用JEdi​​torPane / JTextPane而不是JTextField,並且還可以通過覆蓋paintComponent方法來繪制文本/字符串。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM