gpt4 book ai didi

java - Swing HTML 呈现显示非常大的项目符号点

转载 作者:搜寻专家 更新时间:2023-10-31 22:21:52 25 4
gpt4 key购买 nike

我使用 JEditorPane 在 swing 应用程序中呈现一些 HTML。我使用项目符号列表 <ul><li>...</li></ul>并且我在输出中获得了过大的要点。相同的 HTML block 将在真实浏览器中显示正常大小的项目符号点。

我在 Windows 7/JDK 7 和 iirc 上观察到了这一点,也在 Ubuntu 和 OpenJDK 1.7.0_09 上观察到了这一点。

这是已知的吗?有解决办法吗?

工作示例:

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.WindowConstants;

/**
*
*/
public class HTMLTest {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// create new frame
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.setSize(500, 500);

// create editor pane and fill with some html
JEditorPane pane = new JEditorPane();
pane.setContentType("text/html");
pane.setEditable(false);
pane.setText("<html><h1>Heading</h1>Text<ul><li>Bullet point</li></ul></html>");

// add editor pane to frame and set frame visible
frame.add(pane);
frame.setVisible(true);
}
}

P.S.: 我现在正在用

ul {
list-style-type: none;
margin-left: 10px
}

在一个css文件中

<li>&bull; Item 1</li>

在 html 中有一个体面的要点。受 aterai 启发的解决方案。

最佳答案

查看ListView源码

public void paint(Graphics g, Shape allocation) {
super.paint(g, allocation);
Rectangle alloc = allocation.getBounds();
Rectangle clip = g.getClipBounds();
// Since listPainter paints in the insets we have to check for the
// case where the child is not painted because the paint region is
// to the left of the child. This assumes the ListPainter paints in
// the left margin.
if ((clip.x + clip.width) < (alloc.x + getLeftInset())) {
Rectangle childRect = alloc;
alloc = getInsideAllocation(allocation);
int n = getViewCount();
int endY = clip.y + clip.height;
for (int i = 0; i < n; i++) {
childRect.setBounds(alloc);
childAllocation(i, childRect);
if (childRect.y < endY) {
if ((childRect.y + childRect.height) >= clip.y) {
listPainter.paint(g, childRect.x, childRect.y,
childRect.width, childRect.height,
this, i);
}
}
else {
break;
}
}
}
}

listPainter 使用过去的参数作为

    if (childtype == CSS.Value.SQUARE || childtype == CSS.Value.CIRCLE
|| childtype == CSS.Value.DISC) {
drawShape(g, childtype, (int) x, (int) y,
(int) w, (int) h, align);
}

然后是 drawShape,因为您可以看到大小被硬编码为 8

void drawShape(Graphics g, CSS.Value type, int ax, int ay, int aw, 
int ah, float align) {
// Align to bottom of shape.
int gap = isLeftToRight ? - (bulletgap + 8) : (aw + bulletgap);
int x = ax + gap;
int y = Math.max(ay, ay + (int)(align * ah) - 8);

if (type == CSS.Value.SQUARE) {
g.drawRect(x, y, 8, 8);
} else if (type == CSS.Value.CIRCLE) {
g.drawOval(x, y, 8, 8);
} else {
g.fillOval(x, y, 8, 8);
}
}

你可以尝试在你自己的painter提供的方法中替换StyleSheet的ListPainter

public ListPainter getListPainter(AttributeSet a) {
return new ListPainter(a, this);
}

在哪里可以更改项目符号的渲染

关于java - Swing HTML 呈现显示非常大的项目符号点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13626531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com