gpt4 book ai didi

java - JList 列表项被压缩

转载 作者:行者123 更新时间:2023-12-01 11:47:50 25 4
gpt4 key购买 nike

我的 JList 可以正常工作,但只有第一个列表项的大小合适。它下面的其他一切都被压扁了。我已经搜索了所有 StackOverflow,但没有发现太多(尽管要让它工作,全靠 StackOverflow)

package networks;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.ArrayList;
import java.util.Random;
import javax.swing.*;

/**
*
* @author Matthew
*/
public class Networks extends JFrame implements ActionListener {

private static JPanel container = new JPanel();
private static JPanel graphPanel = new JPanel();
private static JPanel content = new JPanel();
private static JPanel buttons = new JPanel();
private static Graphics2D g;
private static JButton read = new JButton("Read");
private static JButton breadth = new JButton("Breadth");
private static JButton depth = new JButton("Depth");
private String[] listModel = new String[10];
private static JScrollPane scroller = new JScrollPane();
private JList lists;

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Networks networks = new Networks();
networks.setVisible(true);
}

public Networks() {
super("Station Networks");
//Set up window and frames, buttons and lists
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

container.setLayout(new BoxLayout(container, BoxLayout.Y_AXIS));
content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));
content.setPreferredSize(new Dimension(260,300));
buttons.setLayout(new BoxLayout(buttons, BoxLayout.X_AXIS));
graphPanel.setPreferredSize(new Dimension(255,255));

//Add default value, tester
listModel[0] = "The station list is currently empty";
lists = new JList(listModel);
lists.setVisibleRowCount(5);
scroller.setViewportView(lists);
BufferedImage im = new BufferedImage(255,255,BufferedImage.TYPE_INT_RGB);
g = im.createGraphics();

//add listeners
read.addActionListener(this);
breadth.addActionListener(this);
depth.addActionListener(this);

//put it all togethe
content.add(graphPanel);
content.add(new Label("List"));
content.add(scroller);
buttons.add(read);
buttons.add(breadth);
buttons.add(depth);
container.add(content);
container.add(buttons);
add(container);
pack();
setVisible(true);
}

我有一个稍后添加列表项的功能。这些元素进来时都被压扁了。有没有办法设置列表项的大小?

最佳答案

不要使用数组来存储数据。您的数组包含空值,第一个条目除外。空条目变得很有趣。

而是使用 DefaultListModel 并直接向其中添加项目:

DefaultList model = new DefaultListModel();
model.addElement( "line1" );
JList list = new JList( model );

关于java - JList 列表项被压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29017450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com