Код: Выделить всё
icon = new ImageIcon(spritePath);
frame.add(new JLabel(icon));
frame.setSize(icon.getIconWidth(), icon.getIconHeight());
frame.setVisible(true);
for (int i = 0; i < screenSize.getWidth() - icon.getIconWidth(); i++) {
frame.setLocation(i, yMidpoint);
Thread.sleep(10);
}
Подробнее здесь: https://stackoverflow.com/questions/779 ... -on-jframe
Мобильная версия