有谁知道如何做到这一点?imageicons 是相同的尺寸,但在一个上具有透明度,以便您可以看到背景图标。
tiles[w][h] = new JLabel();
if(tiles[10][15] == tiles[w][h]){
icon2 = new ImageIcon(Map.tileGrid[8][11]);
icon = new ImageIcon(Map.map[w][h]);
top.setIcon(icon2);
bottom.setIcon(icon);
top.setBounds(2, 0, 30, 30);
bottom.setBounds(0, 0, 30, 30);
resources.add(top, new Integer(1));
resources.add(bottom, new Integer(2));
tiles[w][h].add(resources);
}
像这样的东西,因为我还没有实现布局管理器,所以它没有显示在我的地图上?