我有一个滚动窗格,我正在代码中动态填充它。问题是我不能让它的范围扩大。
我尝试了很多我能在网上找到的技巧,但没有什么能让它出现。
我循环出10个组件,但大小始终保持不变。
B = new JScrollPane();
B.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
B.setViewportBorder(null);
B.setBounds(12, 53, 330, 400);
//making the scrollPane
loadArtists(country);
// loading the method with the content
contentPane.add(B);
// the content method
public void loadArtists(String country){
ArrayList<Artist> top10A = Methods.getTopArtist(country); // top atrister
B.removeAll();
String [] genre =Methods.getGenreArtist(country);
Component2[] comp = new Component2[10]; // skriv ut infohållare
for (int i = 0; i < top10A.size(); i++) {
comp[i] = new Component2(this);
comp[i].setBounds(0, 0, 327, 68);
comp[i].setLocation(0, 0 + space2);
ImageIcon[] panel= new ImageIcon[10];
int lyssnare = top10A.get(0).getListeners();
try {
URL url2 = new URL((top10A.get(i).getImageURL(ImageSize.valueOf("MEDIUM"))));
panel[i]= new ImageIcon(url2);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
panel[i]= new ImageIcon(GUI.class.getResource("/bilder/super.jpg"));
e.printStackTrace();
}
comp[i].setInfo(panel[i],top10A.get(i).getListeners(), top10A.get(i).getName().toString(), String.valueOf(i+1),genre[i],lyssnare,"");
B.add(comp[i]);
space2 = space2 + 75;
//B.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
B.repaint();
}
}
好的,这就是我的位置。我会得到卷轴,但它只让我滚动1毫米。如果我删除setBounds,整个滚动窗格就会消失。我不知道如何解决它。如果我有点傻,很抱歉,但这是我的第一个"真正的程序":
scroll1 = new JScrollPane();
scroll1.setViewportBorder(null);
scroll1.setBounds(12, 53, 330, 400);
setComponents = new JPanel();
contentPane.add(scroll1);
scroll1.setViewportView(setComponents);
GroupLayout gl_testP = new GroupLayout(setComponents);
gl_testP.setHorizontalGroup(
gl_testP.createParallelGroup(Alignment.LEADING)
.addGap(0, 307, Short.MAX_VALUE)
);
gl_testP.setVerticalGroup(
gl_testP.createParallelGroup(Alignment.LEADING)
.addGap(0, 398, Short.MAX_VALUE)
);
setComponents.setLayout(gl_testP);
loadArtists(country);
public void loadArtists(String country){
ArrayList<Artist> top10A = Methods.getTopArtist(country); // top atrister
setComponents.removeAll();
String [] genre =Methods.getGenreArtist(country);
Component2[] comp = new Component2[10]; // skriv ut infohållare
for (int i = 0; i < top10A.size(); i++) {
comp[i] = new Component2(this);
comp[i].setBounds(0, 0, 327, 68);
comp[i].setLocation(0, 0 + space2);
ImageIcon[] panel= new ImageIcon[10];
int lyssnare = top10A.get(0).getListeners();
try {
URL url2 = new URL((top10A.get(i).getImageURL(ImageSize.valueOf("MEDIUM")))); // skapa array av artist bilder
panel[i]= new ImageIcon(url2);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
panel[i]= new ImageIcon(GUI.class.getResource("/bilder/super.jpg"));
e.printStackTrace();
System.out.println(panel[i]+" "+"saknar bild");
}
comp[i].setInfo(panel[i],top10A.get(i).getListeners(), top10A.get(i).getName().toString(), String.valueOf(i+1),genre[i],lyssnare,"");
setComponents.add(comp[i]);
space2 = space2 + 75;
scroll1.setViewportView(setComponents);
//B.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
setComponents.repaint();
}
}
好的。所以我"修复"了它。
setComponents.setPreferredSize(new Dimension(1,750));
它不是最佳的,因为它不会让我动态地增长内容。但现在,当我不需要超过10个组件时,这并不重要。
B.setBounds(12, 53, 330, 400);
不要在组件上使用setBounds((方法。
Swing设计用于布局管理器。当添加到滚动窗格的组件的首选大小大于滚动窗格的大小时,滚动条将自动显示。布局管理器为您进行这些计算。
有关更多信息和示例,请参阅Swing教程中关于使用布局管理器的部分。
除了Rob Camick给出的好建议外,您还将直接从JScrollPane中删除所有组件,并尝试直接向其添加组件,忽略了JViewport不应被打乱,可视化组件需要添加到JScrollPane的视口中,而不是添加到JScrollPane本身。
因此,您可以通过将组件传递到JScrollPane的构造函数来将其添加到JScroll Pane的视口中,或者,如果您想交换它所持有的视图,您也可以调用JScrollPane的setViewportView(...)
方法。
顺便说一句,请尽量使用更好的变量名,符合Java命名标准的名称(例如,变量名应以小写字母开头(,以及有意义的名称,使代码具有自我注释性。变量名称B不符合这两个建议中的任何一个。
此外,你的整个程序缺乏使用像样的布局管理器。您似乎希望将多个组件添加到JScrollPane中。考虑创建一个由JScrollPane的视口持有的JPanel,为其提供适当的布局,可能是GridLayout(…(,并将多个组件添加到此JPanel中。
要获得更具体和信息丰富的帮助,请考虑创建和发布SSCCE。