I can not set inline txt and img in a jeditorpane
Image of JEditorPane:
how can i set them inline?
This is my Code:
JFrame frame = new JFrame("HelloWorldSwing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
GridBagLayout gridBagLayout = new GridBagLayout();
gridBagLayout.columnWidths = new int[]{363, 0};
gridBagLayout.rowHeights = new int[]{261, 0, 0};
gridBagLayout.columnWeights = new double[]{0.0, Double.MIN_VALUE};
gridBagLayout.rowWeights = new double[]{0.0, 0.0, Double.MIN_VALUE};
frame.getContentPane().setLayout(gridBagLayout);
JEditorPane jep = new JEditorPane();
jep.setContentType("text/html");
HTMLEditorKit kit = new HTMLEditorKit();
jep.setEditorKit(kit);
StyleSheet styleSheet = kit.getStyleSheet();
styleSheet.addRule("body {color:#000; font-family:times; margin: 4px; display: inline; line-height: 20px;}");
styleSheet.addRule("img {padding-top: 10;}");
jep.setText("<span>Hello computer! <img src='file:ClientServer/Sticker/1.png' width='20' height='20' valign='middle'></span>");
javax/swing/text/html/ImageView.java
"align"
instead of"valign"
does not seem to work well.styleSheet.addRule("img {padding-top: 10; align: middle; valign: middle; vertical-align: middle; }");
The following is an example of overriding the
ImageView#getAlignment(...)
method.