如何在 swing JList 菜单中插入图像?

发布于 2024-08-12 07:50:03 字数 217 浏览 7 评论 0原文

这是我的代码:

URL imageUrl = status.getUser().getProfileImageURL();
ImageIcon tivitImage = new ImageIcon(imageUrl);
listModel.addElement(tivitImage.getImage());  // maybe this part is wrong 

this is my code:

URL imageUrl = status.getUser().getProfileImageURL();
ImageIcon tivitImage = new ImageIcon(imageUrl);
listModel.addElement(tivitImage.getImage());  // maybe this part is wrong 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尝蛊 2024-08-19 07:50:04
listModel.addElement(tivitImage.getImage()); // maybe this part is wrong

是的,这就是问题所在。只需将图标添加到 ListModel(而不是图像)。 JList 支持图标的默认渲染器。

listModel.addElement(tivitImage.getImage()); // maybe this part is wrong

Yes, thats the problem. Just add the Icon to the ListModel (not the image). JList supports a default renderer for Icons.

指尖凝香 2024-08-19 07:50:04

您可以子类 JList< /a> 或使用您自己的 ListCellRenderer< /code>,如本文所示。

另一篇阅读:http://www. apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JList.html,最后解释了带有国家标志的 jlist。

You could subclass JList or use your own ListCellRenderer, as it is shown in this article.

Another reading: http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JList.html, towards the end, a jlist with country flags is explained.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文