私はコンピュータサイエンスプロジェクトに取り組んでいますが、問題の解決策を見つけることができませんでした。JPanel
を介して画像を含むの2D配列を作成していGridLayout
ます。すべてのパネル間のパディング/マージンを削除して、1つの画像に見かけ上流れないようにします。ただし、setHGapメソッドとsetVGapメソッドは役に立たないようです。ご返信いただければ幸いです。ありがとうございました。
import java.awt.GridLayout;
import java.util.Map;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class MapArray {
static JPanel[][] tiles = new JPanel[11][11];
public MapArray() {
}
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = Map.class.getResource(path);
if (imgURL != null) {
return new ImageIcon(imgURL);
} else {
System.err.println("Couldn't find file: " + path);
return null;
}
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame();
frame.setSize(325, 300);
GridLayout layout = new GridLayout(10, 10);
frame.setLayout(layout);
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
tiles[i][j] = new JPanel();
tiles[i][j].add(new JLabel(
createImageIcon("tile-1.png")));
frame.add(tiles[i][j]);
}
}
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.validate();
frame.repaint();
}
});
}
}