Java:以水平方向显示多个缓冲图像的最佳方式(例如胶片卷轴)
我有一个双向链表,在每个节点中存储一个缓冲图像。我可以通过创建迭代器并迭代列表来轻松检索所有缓冲的图像。我想在某种面板中一个接一个地水平显示每个节点。这类似于胶片卷轴,其中帧一个接一个地链接。我不太确定如何去做以及我应该调查什么。我不要求任何特定的代码,我只需要一些指向正确方向的代码。
I have a doubly linked list that's storing a bufferedimage in each node. I can easily retrieve all the buffered images by creating an iterator and iterating through list. I want to display each node horizontally one after the other in some sort of a panel. This would be similar to a film reel where frames are linked one after the other. I am not quite sure on how to go about doing so and what I should look into. I am not asking for any specific code I just need some pointing in the right direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JList。您可以将图标添加到 ListModel 并在滚动窗格中水平显示列表。
阅读 Swing 教程中关于如何使用列表的部分更多细节。
Use a JList. You can add Icons to the ListModel and display the list horizontally in a scroll pane.
Read the section from the Swing tutorial on How to Use Lists for more details.