JList中能否添加 JLabel、JPanel组件

JList中能否添加 JLabel、JPanel组件,第1张

默认的就是JLabel了。

如果你要该我给你一个样板。

public class myList extends JPanel {

private static final long serialVersionUID = 1L

JList mList

DefaultListModel mode

public myList() {

setLayout(new BorderLayout())

mode = new DefaultListModel()

for (int i = 0i <10i++) {

mode.addElement("123")

}

mList = new JList(mode)

mList.setCellRenderer(new MyCellRenderer())

add(new JScrollPane(mList), BorderLayout.CENTER)

}

public static void main(String[] args) {

JFrame jf = new JFrame()

jf.add(new myList(), BorderLayout.CENTER)

jf.pack()

jf.setVisible(true)

jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)

}

class MyCellRenderer extends JButton implements ListCellRenderer {

public MyCellRenderer() {

setOpaque(true)

}

public Component getListCellRendererComponent(JList list,

Object value,

int index,

boolean isSelected,

boolean cellHasFocus) {

setText(value.toString())

Color background

Color foreground

// check if this cell represents the current DnD drop location

JList.DropLocation dropLocation = list.getDropLocation()

if (dropLocation != null &&!dropLocation.isInsert() &&dropLocation.getIndex() == index) {

background = Color.BLUE

foreground = Color.WHITE

// check if this cell is selected

} else if (isSelected) {

background = Color.RED

foreground = Color.WHITE

// unselected, and not the DnD drop location

} else {

background = Color.WHITE

foreground = Color.BLACK

}

setBackground(background)

setForeground(foreground)

return this

}

}

}

listCellRenderer是控制显示的,我这里是button,你也可以换成别的,不建议使用jPanel,panel无法显示字体,所以你要自己弄个控件显示。

Model只负责保存数据,和界面无关,不要把界面也放到这里了。

在Java中,要向JList添加ArrayList集合,只需调用其setListData方法即可。

具体添加步骤如下:

1、首先要实例化一个JList对象

2、其次是实例一个ArrayList对象,并向其中添加一些数据

3、再次是将ArrayList对象转换为Object数组,调用其toArray方法即可。

4、最后就是向JList中添加ArrayList了,调用setListData方法将ArrayList转换好的Object数组设置进去即可。

JList是Java GUI编程中的一个重要的列表组件,可以方便地显示对象数组或对象 Vector,不过也仅限于图形界面编程中使用,在web开发或者其他应用开发中,基本上是用不到的。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11471405.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存