0

ボタンを押した時の文字色を変えたい。

フォントの色は 3 つのラジオボタンで選択します。

ボタンを押すと、makeStyleSheet関数がcssを作成します。

この CSS では、1 つの色のみが定義されています。

しかし、フォントの色は変わりません....

どうして ???

@SuppressWarnings("javadoc")
public class Sample extends JFrame {

    JRadioButton[] radio;
    JTextPane textPane;
    HTMLEditorKit kit;
    HTMLDocument doc;
    JButton btnNewButton;
    ButtonGroup group;
    List<JRadioButton> list;

    /**
     * @param args
     */
    public static void main(String[] args) {
        Sample frame = new Sample();
        ActionListener action = new MyButtonAction(frame.kit, frame.doc, frame.list);

        frame.addAction(action);
        frame.setVisible(true);
    }

    private void addAction(ActionListener action) {

        btnNewButton.addActionListener(action);
    }

    @SuppressWarnings("javadoc")
    public Sample() {

        doc = new HTMLDocument();
        textPane = new JTextPane();
        kit = new HTMLEditorKit();

        setBounds(100, 100, 450, 300);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        getContentPane().setLayout(null);

       textPane.setEditorKit(kit);
       textPane.setDocument(doc);
        textPane.setContentType("text/html");
        textPane.setBounds(12, 13, 282, 229);
        getContentPane().add(textPane);

        btnNewButton = new JButton("HTML");
        btnNewButton.setBounds(303, 211, 117, 31);

        getContentPane().add(btnNewButton);

        group = new ButtonGroup();

        list = new ArrayList<JRadioButton>();

       JRadioButton rdbtnRed = new JRadioButton("apple", true);
        JRadioButton rdbtnYellow = new JRadioButton("banana");
        JRadioButton rdbtnGreen = new JRadioButton("mellon");

       list.add(rdbtnRed);
       list.add(rdbtnYellow);
      list.add(rdbtnGreen);

       group.add(rdbtnRed);
       group.add(rdbtnYellow);
        group.add(rdbtnGreen);

        rdbtnRed.setBounds(302, 161, 113, 21);
        getContentPane().add(rdbtnRed);
        rdbtnYellow.setBounds(302, 138, 113, 21);
        getContentPane().add(rdbtnYellow);
        rdbtnGreen.setBounds(302, 115, 113, 21);
        getContentPane().add(rdbtnGreen);
    }
}

class MyButtonAction implements ActionListener {

    HTMLEditorKit kit;
        HTMLDocument doc;
        List<JRadioButton> list;

    public MyButtonAction(HTMLEditorKit kit, HTMLDocument doc, List<JRadioButton> list) {

        this.kit = kit;
        this.doc = doc;
        this.list = list;
    }

    @Override
    public void actionPerformed(ActionEvent e) {

        String tag = null;

        for(JRadioButton btn : list) {

            if (btn.isSelected()){

                tag = btn.getText();
            }
        }

        kit.setStyleSheet(makeStyleSheet(tag));

        try {

            kit.insertHTML(doc, doc.getLength(), "<font class=\"apple\">apple</font>,<font class=\"banana\">banana</font>,<font class=\"mellon\">mellon</font>", 0, 0, null);
        } catch (IOException e1) {

            e1.printStackTrace();
        } catch (BadLocationException e1) {

            e1.printStackTrace();
        }
    }

    private StyleSheet makeStyleSheet(String tag) {

        StyleSheet styleSheet = new StyleSheet();
        styleSheet.addRule("." + tag + " {color: red;}");

        return styleSheet;
    }
}
4

4 に答える 4

2

kitではなく、 docのスタイルシートに CSS ルールを追加します。

    doc.getStyleSheet().addRule(".apple {color: red;}");
    doc.getStyleSheet().addRule(".banana {color: yellow;}");
    doc.getStyleSheet().addRule(".mellon {color: green;}");

ところで、より規則的なのは、 a <span>io aを使用すること<font>です。

于 2013-05-29T15:55:47.567 に答える
1

java.awt.Colorフォントの色付けに も使用できます。

を使用している場合はJLabel.setForeground(Color.X); テキストの色が変わります。たとえば、.setForeground(Color.WHITE)my の色JLabelを白に変更します。

于 2016-08-13T16:17:39.197 に答える
1

コンポーネントのフォントの色をテキストで変更したい場合は、単純に foregroundColor を変更できます。これは、200 秒ごとにフォントの色を変更するデモです。

JFrame frame = new JFrame();
        final JTextPane pane = new JTextPane();
        final JButton button = new JButton("HELLO");
        pane.setText("HELLO");
        frame.getContentPane().add(pane);

        new javax.swing.Timer(200, new ActionListener() {
            Random random = new Random();
            @Override
            public void actionPerformed(ActionEvent arg0) {
                Color color = new Color(random.nextInt(256),
                        random.nextInt(256), random.nextInt(256));
                pane.setForeground(color); //<== change text color ==>
            }
        }).start();
        frame.pack();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
于 2013-05-29T15:30:49.427 に答える