我正试图在JPanel的特定X和Y坐标处放置一系列JLabel(并设置其高度和宽度)。无论我做什么,每个标签都会立即出现在前一个标签的右侧,并且与其他标签的大小完全相同。
现在,我的Jpanel处于网格布局中。我尝试过Absolute Layout(非法参数异常结果)、Free Design(没有标签显示)、Flow Layout(所有内容都被压缩到中心)和其他一些。
不确定我需要做些什么才能让它发挥作用。有人能帮忙吗?谢谢
JLabel lbl1 = new JLabel("label 1");
JLabel lbl2 = new JLabel("label 2");
JLabel lbl3 = new JLabel("label 3");
JLabel lbl4 = new JLabel("label 4");
JLabel lbl5 = new JLabel("label 5");
myPanel.add(lbl1);
myPanel.add(lbl2);
myPanel.add(lbl3);
myPanel.add(lbl4);
myPanel.add(lbl5);
lbl1.setLocation(27, 20);
lbl2.setLocation(123, 20);
lbl3.setLocation(273, 20);
lbl4.setLocation(363, 20);
lbl5.setLocation(453, 20);
lbl1.setSize(86, 14);
lbl2.setSize(140, 14);
lbl3.setSize(80, 14);
lbl4.setSize(80, 14);
lbl5.setSize(130, 14);
您必须将容器的布局设置为null:
myPanel.setLayout(null);
然而,最好也看看Matisse Layout Manager,我想它现在被称为GroupLayout。绝对定位的主要问题是当窗口改变其大小时会发生什么。
-
通过调用
setLayout(null)
将容器的布局管理器设置为null。 -
为容器的每个子级调用Component类的
setbounds
方法。 -
调用Component类的重新绘制方法。
注:
如果调整包含容器的窗口的大小,则使用绝对定位的容器创建容器可能会导致问题。
请参阅此链接:http://docs.oracle.com/javase/tutorial/uiswing/layout/none.html
myPanel = new JPanel(null);
或
myPanel.setLayout(null);
我的建议是使用像NetBeans这样的IDE及其GUI编辑器。检查代码,因为有很多方法:
设置布局管理器,或者为了进行绝对定位而执行myPanel.setLayout(null),会产生多种影响。
通常,假设您在JFrame的构造函数中进行调用,则可以调用pack()
来启动布局。
然后,每个布局管理器都使用自己的add(Component)
或add(Component, Constraint)
实现。BorderLayout的用法是添加(标签、BorderLayout.CENTER)等。
// Best solution!!
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Main {
public static void main(String args[]) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = (JPanel) frame.getContentPane();
panel.setLayout(null);
JLabel label = new JLabel("aaa");
panel.add(label);
Dimension size = label.getPreferredSize();
label.setBounds(100, 100, size.width, size.height);
frame.setSize(300, 200);
frame.setVisible(true);
}
}
您可以使用自己的方法,直接通过setSize、setLocation值调用`我还向你展示了如何使用JProgress Bar
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class installComp{
void install(Component comp, int w, int h, int x, int y){
comp.setSize(w,h);
comp.setLocation(x,y);
}
}
class MyFrame extends JFrame{
int cur_val = 0;
JButton btn = new JButton("Mouse Over");
JProgressBar progress = new JProgressBar(0,100);
MyFrame (){
installComp comp=new installComp();
comp.install(btn,150,30,175,20);
comp.install(progress,400,20,50,70);
btn.addMouseListener(new MouseAdapter(){
public void mouseEntered(MouseEvent evt){
cur_val+=2;
progress.setValue(cur_val);
progress.setStringPainted(true);
progress.setString(null);
}
});
add(btn);
add(progress);
setLayout(null);
setSize(500,150);
setResizable(false);
setDefaultCloseOperation(3);
setLocationRelativeTo(null);
setVisible(true);
}
}
class Demo{
public static void main(String args[]){
MyFrame f1=new MyFrame();
}
}