誰かがこれを行う方法を知っていますか?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);
}
このようなもので、レイアウトマネージャーを実装していないので、マップに表示されないのはなぜですか?