我想查看有关程序某些对象的一些信息。为此我用它的信息为每个Object创建一个JPanel。这些面板在Panel中打包在一起,我将其添加到ScrollPane中。
如果只有几个对象,则工作完美,因此无需滚动即可显示所有信息。一旦有更多,整个小组就会以最小化的方式消失。
很抱歉,我无法提取一个小代码片段来重现错误。我把它做得尽可能小。所以我必须给你三个课程:
程序:创建一个对象的TreeMap并对其进行处理。这里只是初始化一个整数列表。
import java.util.TreeMap;
public class Program {
// Set ObjectNumber here!
static int numberObjects = 32;
static TreeMap<Integer, Integer> objects = new TreeMap<Integer, Integer>();
static TestFrame frame;
public static void main(String[] args) {
init();
}
public static void init() {
for (int i=0; i < numberObjects; i++) {
objects.put(i, i);
}
frame = new TestFrame(objects);
frame.repaint();
}
}
TestFrame :它扩展了JFrame,将其自身设置为maximimzed和Border Layout。之后,它将我的类TestPanel中的JPanel添加到东部。
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Frame;
import java.util.TreeMap;
import java.awt.GridLayout;
import java.awt.Toolkit;
import java.util.TreeMap;
import javax.swing.JFrame;
public class TestFrame extends JFrame {
TreeMap<Integer, Integer> objects;
TestPanel testPanel;
public TestFrame(TreeMap<Integer, Integer> objects) {
this.objects = objects;
setTitle("Program");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setExtendedState(Frame.MAXIMIZED_BOTH);
init();
}
public void init() {
setLocationRelativeTo(null);
setLayout(new BorderLayout());
testPanel = new TestPanel(objects);
this.add(testPanel, BorderLayout.EAST);
setVisible(true);
}
}
TestPanel :它扩展了JPanel。遍历所有对象并将带有整数值的标签添加到数组名称[]。然后再次为每个对象构建一个仅用于此对象的面板,添加一个带有文本“Name:”的面板和来自names [] - array的标签。使用GridBagLayout。 现在它将对象的所有面板打包在一个面板“innerPanel”中。这将添加到滚动窗格中。滚动窗格被添加到类(TestPanel)。
import java.util.TreeMap;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.SwingConstants;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Label;
import javax.swing.BorderFactory;
public class TestPanel extends JPanel {
GridBagConstraints gridBagConstraints = new GridBagConstraints();
TreeMap<Integer, Integer> objects;
Label[] names;
JPanel[] objectPanel;
JPanel innerPanel;
Font fontLabelName = new Font("Arial", Font.BOLD, 20);
public TestPanel (TreeMap<Integer, Integer> objects) {
this.objects = objects;
names = new Label[objects.size()];
objectPanel = new JPanel[objects.size()];
this.setLayout(new GridBagLayout());
for(int i=0; i<objects.size(); i++) {
Label tempLabel = new Label(Integer.toString(objects.get(i)), SwingConstants.LEFT);
tempLabel.setFont(fontLabelName);
names[i]=tempLabel;
}
for (int i=0; i<objects.size(); i++) {
JPanel tempPanel = new JPanel();
tempPanel.setLayout(new GridBagLayout());
objectPanel[i] = tempPanel;
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 0;
gridBagConstraints.gridwidth = 2;
gridBagConstraints.gridheight = 1;
Label nameLabel = new Label("Name: ", SwingConstants.LEFT);
nameLabel.setFont(fontLabelName);
objectPanel[i].add(nameLabel, gridBagConstraints);
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 0;
gridBagConstraints.gridwidth = 2;
gridBagConstraints.gridheight = 1;
objectPanel[i].add(names[i], gridBagConstraints);
}
innerPanel = new JPanel();
innerPanel.setLayout(new GridLayout(0,1));
for (int i = 0; i<objects.size(); i++) {
innerPanel.add(objectPanel[i]);
}
JScrollPane scrollPane = new JScrollPane(innerPanel);
// scrollPane.setBorder( BorderFactory.createEmptyBorder() );
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
this.add(scrollPane);
}
}
在屏幕截图中看到的31个对象的屏幕分辨率非常完美,但如果使用32个对象,则滚动窗格几乎消失。
如果有人可以帮我解决或链接匹配的帖子,我真的很感激 - 我找不到google / search。
答案 0 :(得分:3)
尝试在TestPanel中设置不同的布局。如果您要在面板中添加一个对象(在您的情况下为scollpane),并且您希望对象占据面板的所有空间,BorderLayout是一个不错的选择。
this.setLayout(new BorderLayout());