我正在创建一个应用程序,用户可以在屏幕上添加按钮或删除它(我还没有实现这些选项)。因此,现在我手动填充for()循环并手动删除其中一个按钮。我的问题是,删除按钮后(main()中的删除操作),只有一个空白点。我希望能够在删除其中一个按钮后重新绘制屏幕。在这个例子中,索引2(块#3)已被删除,留下一个空的空间,之前的位置......我不知道如何重新绘制它。我尝试在程序的不同位置验证或重新绘制,但没有成功。
这是代码( PS 我确定我的代码不是完成我正在尝试的最有效的方法,而且我正在使用setLayout(null),这不是首选方法,但是现在我只是想学习某些东西,然后扩展它以改善我自己和我的代码):
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;
class TestApp extends JFrame{
JFrame frame = new JFrame("Test Program");
ArrayList<JButton> grid = new ArrayList<JButton>();
private int w = 14;
private static int amount = 102;
private static int counter = 0;
//Default Constructor (sets up JFrame)
TestApp(){
frame.setLayout(null);
frame.setPreferredSize(new Dimension(1186, 880));
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setResizable(false);
paintGrid();
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public void newWindow()
{
JFrame select_win = new JFrame("Selected Frame");
JPanel select_panel = new JPanel();
select_panel.setPreferredSize(new Dimension(600, 800));
select_panel.setBackground(Color.ORANGE);
select_win.add(select_panel);
select_win.pack();
select_win.setResizable(false);
select_win.setVisible(true);
select_win.setLocationRelativeTo(null);
}
private void paintGrid()
{
for(int i = 0, y = 4; i < ((amount / w) + (amount % w)); i++, y += 104)
{
for(int j = 0, x = 4; j < w && (counter < amount); j++, x += 84)
{
addBlock(counter, x, y);
counter++;
}
}
}
//Adds a block
private void addBlock(int index, int x, int y){
int height = 100;
int width = 80;
grid.add(new JButton("counter: " + (counter + 1)));
(grid.get(index)).addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
newWindow();
}
});
}
});
(grid.get(index)).setBorder(new LineBorder(Color.BLACK));
(grid.get(index)).setBackground(Color.YELLOW);
(grid.get(index)).setVisible(true);
(grid.get(index)).setBounds(x, y, width, height);
frame.add(grid.get(index));
}
//Removes a block
private void removeBlock(int index){
frame.remove(grid.get(index));
grid.remove(index);
amount--;
counter--;
}
public static void main(String [] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
TestApp app = new TestApp();
//testing block removal
app.removeBlock(2);
}
});
}
}
答案 0 :(得分:3)
正确的方法是:revalidate()
revalidate()方法通知布局管理器该组件及其上方的所有父级都被标记为需要布局。这意味着布局管理器将尝试重新对齐组件。通常在删除组件后使用。
我认为如果您实际使用Swing
,您将只会知道这一点答案 1 :(得分:1)
正如你所说,使用NullLayout
并不好。要解决您的问题,您只需要进行两项更改:
将构造函数的布局更改为FlowLayout
,如下所示:
frame.setLayout(new FlowLayout());
将setBounds
来电更改为setPreferredSize
:
(grid.get(index)).setPreferredSize(new Dimension(width, height));
现在FlowLayout
会自动对齐您的商品,您不必再担心它了。