JList中的多列显示
JList 中是否可以显示多列???
Is it possible to have multiple column display in JList ????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
JList 中是否可以显示多列???
Is it possible to have multiple column display in JList ????
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
绝对地!您需要调用 setLayoutOrientation,它向列表指示在进入新行之前应如何包装其数据。您可以使用 JList.HORIZONTAL_WRAP 或 JList.VERITCAL_WRAP。这告诉数据像往常一样显示(作为列表),然后在到达底部时换行。
如果您想将该调用与 setVisibleRowCount(-1) 结合使用,则可以在可用空间中显示尽可能多的项目。
Absolutely! You need to make a call to setLayoutOrientation which indicates to the list how it should wrap its data before going to a new row. You can use JList.HORIZONTAL_WRAP or JList.VERITCAL_WRAP. This tells the data to be displayed as usual (as a list) and then wrap when it reaches the bottom.
If you want to combine that call with setVisibleRowCount(-1), you can then display as many items possible in the space that is available.
使用专为此目的而设计的 JTable。
Use a JTable which is designed for this purpose.
比较 camickr 和 JasCav 的两个答案:
这是 Icon 对象的包装 JList:
这是一个第二行带有图标的 JTable 和一个特殊的 TableCellRenderer:
(均来自 我当前的项目。)
To compare the two answers by camickr and JasCav:
Here is a wrapped JList of Icon objects:
Here is a JTable with icons in the second row and a special TableCellRenderer:
(Both from my current project.)