JList 在顶部而不是底部追加行
我在网上搜索有关此问题的信息,但找不到任何相关答案。实际上,我的 JList
当前在列表底部附加了新行。我的问题案例需要的是我想添加或添加新行到我的 JList
模型(在顶部)。我怎样才能实现这个目标?
I was searching on web regarding this but could not find any relevant answer. Actually, my JList
currently appends new row at the bottom of list. What my problem case needs is I want to add or prepend new row added to my JList
model (at the top). How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您访问过 java 文档,您就会知道
listModel
的某种方法add(int index, Object element)
,以防万一应该用于插入元素在您想要的索引处。示例:
Had you visited the java docs, you would have known of a certain method
add(int index, Object element)
for thelistModel
which in case should be used to insert the element at the index you desire.EXAMPLE: