ドラム楽器を作る必要があります。私はすでに背景画像とサウンドを持っています。ここで、ドラムに 4 つの透明な円を追加して、4 つの異なるサウンドを生成する必要があります。
import javax.swing.*;
import java.awt.event.*;
public class PictureOnClickOneSound
{
public static void main(String args[])
{
// Create a "clickable" image icon.
ImageIcon icon = new ImageIcon("C:\\Users\\apr13mpsip\\Pictures\\Drum2.jpg");
JLabel label = new JLabel(icon);
label.addMouseListener(new MouseAdapter()
{
public void mouseClicked(MouseEvent me)
{
sound1.Sound1.play();
System.out.println("CLICKED");
}
});
// Add it to a frame.
JFrame frame = new JFrame("My Window");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(label);
frame.pack();
frame.setVisible(true);
}
}