Swingexamples-create-html-button

提供:Dev Guides
移動先:案内検索

Swingの例-HTMLボタンの使用

次の例は、Java SwingアプリケーションでHTMLボタンを作成する方法を示しています。

次のAPIを使用しています。

  • * JButton(HTML)*-HTMLコンテンツで標準ボタンを作成します。 htmlコンテンツの先頭に<html>が存在することを確認してください。
  • setForeground -ボタンの前景色を設定します。
  • setBackground -ボタンの背景色を設定します。
  • * setFont()*-ボタンで使用されるフォントを設定します。

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class SwingTester {
   public static void main(String[] args) {
      createWindow();
   }

   private static void createWindow() {
      JFrame frame = new JFrame("Swing Tester");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

      createUI(frame);
      frame.setSize(560, 200);
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }

   private static void createUI(final JFrame frame){
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);

      String htmlContent = "<html><center><b><u>N</u>ext</b><br>"
         + "<font color=#eeeeee>Move Ahead</font>";

      JButton nextButton = new JButton(htmlContent);
      nextButton.setForeground(new Color(0xaabbcc));
      nextButton.setBackground(new Color(0x444444));
      nextButton.setMnemonic(KeyEvent.VK_N);
      Font font = nextButton.getFont().deriveFont(Font.ITALIC);
      nextButton.setFont(font);
      nextButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "Button clicked.");
         }
      });

      panel.add(nextButton);
      frame.getContentPane().add(panel, BorderLayout.CENTER);
   }
}

出力

アイコンとテキストでボタンを作成するリンク:/cgi-bin/printpage.cgi [__印刷]