水平换行的 JList 项目未一直延伸
我有一个像下面这样的 Jlist。我正在使用 JList.HorizontalWrap 来实现此目的,但由于某种原因,在列表中的第 4 项之后,它开始一个新行。
这是我用来获取列表的配置。
sList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
sList.setVisibleRowCount(-1);
sList.setLayoutOrientation(JList.HORIZONTAL_WRAP);
有什么方法可以将列表行数设置为 Jlist 的宽度,以便在开始新行之前将列表中的所有项目设置为交叉?
I have a Jlist like the one below. I am using the JList.HorizontalWrap
to achieve this, but for some reason, after the 4th item in the list, it starts a new row.
Here is the configurations I used to get the list looking this.
sList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
sList.setVisibleRowCount(-1);
sList.setLayoutOrientation(JList.HORIZONTAL_WRAP);
Is there any way I can set the List row count to be the width of the Jlist so that all items in the list will be set across before starting a new row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我在评论中指出的,您的问题很适合通过创建 SSCCE 来解决。事实上,我自己使用您的代码片段和我的一些代码做了一个:
由于我无法用我的代码重现您的问题,因此我必须得出结论,您的问题存在于您未向我们展示的代码中的其他位置。同样,如果您可以创建并发布您的 SSCCE,我们很可能能够帮助回答您的问题,但在那之前,我不确定我们是否可以猜测问题是什么。
As I noted in my comment, your problem lends itself well to solving through creation of an SSCCE. In fact, I did one myself using your code snippet and some of my code:
Since I cannot reproduce your problem with my code, I must conclude that your problem lies elsewhere in code that you've not shown us. Again, if you can create and post your SSCCE, we will likely be able to help answer your question, but until then, I'm not sure if we can even guess what the problem is.