我已经动态创建了许多JLabel,并使用以下代码将它们添加到JPanel中(代码应该足以理解我希望的问题!)。
JPanel textPanel = new JPanel();
map = new HashMap<Integer,JLabel>();
vec = new Vector<JLabel>();
for(int i = 0; i<getCount();i++){ // getCount() returns int
JLabel label = new JLabel(getItemText(i)); // getItemText() returns String
map.put(i, label);
vec.add(label);
textPanel.add(map.get(i));
}
现在我正在尝试访问这些标签的位置,但在尝试通过以下代码访问它们时,除了java.awt.Point[x=296,y=63]
之外什么都没有。
System.out.println("Component position [1]: " +
textPanel.getComponent(1).getLocationOnScreen());
我为所有组件获得了相同的位置,而不仅仅是那个。
另外(更重要的是)我得到以下代码的位置java.awt.Point[x=0,y=0]
。
System.out.println("Position of Component 1: " + map.get(1).getLocation());
我猜这与动态创建JLabel的事实有关。我确实需要动态创建它们,而且真的需要能够通过getLocation()
获取其位置。
请帮忙!也许有另一种创建它们的方式或以不同方式访问其位置的方式?
答案 0 :(得分:5)
创建组件时,其默认位置为(0,0);
向面板添加组件不会更改此位置。
将所有标签添加到面板后,您需要执行以下操作:
panel.revalidate();
这将调用面板使用的布局管理器,然后根据布局管理器的规则为每个标签分配一个适当的位置。
答案 1 :(得分:4)
这是一个SSCCE。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class WhereIsMyComponent {
public static void showComponentLocations(Container parent) {
Component[] all = parent.getComponents();
System.out.println("Show locations of children..");
for (Component c : all) {
System.out.println(c.getLocation());
}
}
public static void main(String[] args) {
String msg = "Hello World!";
final JPanel p = new JPanel(new FlowLayout());
for (int ii=0; ii<6; ii++) {
p.add(new JLabel(msg));
}
ComponentListener cl = new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent ce) {
showComponentLocations(p);
}
};
p.addComponentListener(cl);
JFrame f = new JFrame("Where Is My Component?");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(p);
f.pack();
f.setSize(400,300);
f.setLocationByPlatform(true);
f.setVisible(true);
}
}
Show locations of children..
java.awt.Point[x=16,y=5]
java.awt.Point[x=89,y=5]
java.awt.Point[x=162,y=5]
java.awt.Point[x=235,y=5]
java.awt.Point[x=308,y=5]
java.awt.Point[x=162,y=26]
Show locations of children..
java.awt.Point[x=16,y=5]
java.awt.Point[x=89,y=5]
java.awt.Point[x=162,y=5]
java.awt.Point[x=235,y=5]
java.awt.Point[x=308,y=5]
java.awt.Point[x=162,y=26]
Show locations of children..
java.awt.Point[x=26,y=5]
java.awt.Point[x=99,y=5]
java.awt.Point[x=172,y=5]
java.awt.Point[x=26,y=26]
java.awt.Point[x=99,y=26]
java.awt.Point[x=172,y=26]
Press any key to continue . . .