Java - JList 单击
我有一个带有 JScrollPane
的 JList
。如果 JList
中只有一项内容,则由于 JScrollPane
的原因,将会出现空白空间。如果我单击 JList 中的任意位置,它将单击一个元素。有没有办法让它只在我实际单击该元素时才单击该元素?另外,我正在使用 JList
的自定义渲染器来添加图像(如果与之相关的话)。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过
locationToIndex
。You can check the index that was clicked via
locationToIndex
.这可以帮助你。
This could help you.
不确定这是否适合您的情况,但您可以尝试
List.isFileList
属性:这将强制 ListUI 确保该点位于列表项的实际边界内(请参阅 SwingUtilities2.loc2IndexFileList)。
但是,设置此属性可能会更改列表的外观。
Not sure if this fits your case but you can try
List.isFileList
property:This will force ListUI to make sure that the point is within the actual bounds of a list item(see SwingUtilities2.loc2IndexFileList).
However, setting this property may change the look and feel of your list.